forked from Flask-FlatPages/Flask-FlatPages
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
66 lines (59 loc) · 1.77 KB
/
setup.cfg
File metadata and controls
66 lines (59 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build_sphinx]
source-dir = docs
build-dir = docs/_build
[aliases]
test = pytest
[tools:pytest]
python_files = *test*.py
[bdist_wheel]
universal = 1
[metadata]
name = Flask-FlatPages
version = 0.8.1
url = https://github.com/Flask-FlatPages/Flask-FlatPages
author = Simon Sapin, Igor Davydenko, Padraic Calpin
author_email = simon.sapin@exyr.org
maintainer = Padraic Calpin
maintainer_email = itsme@padraic.xyz
license = BSD
description = Provides flat static pages to a Flask application
long_description = file: README.rst
classifiers =
Environment :: Web Environment
Framework :: Flask
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
platforms=any
[options]
packages = flask_flatpages
setup_requires = pytest-runner
tests_require = pytest;Pygments>=1.6;pytz
install_requires =
Flask>1.0
Jinja2>=2.10.2
Markdown>=2.5
PyYAML==5.3.1; python_version=="3.5"
PyYAML>5.3.1; python_version!="3.5"
pytz; python_version=="2.7"
six
python_requires=>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*
zip_safe = False
[options.extras_require]
docs = Sphinx>=1.4; Pallets-Sphinx-Themes; Pygments
codehilite = Pygments>=2.5.2
[flake8]
application-import-names = flask_flatpages
ignore = W504
import-order-style = smarkets
max-complexity = 20