-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
44 lines (41 loc) · 1.14 KB
/
setup.cfg
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
[metadata]
name = Flask-PluginEngine
version = attr: flask_pluginengine.__version__
description = A simple plugin system for Flask applications.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/indico/flask-pluginengine
license = BSD
author = Indico Team
author_email = [email protected]
classifiers =
Environment :: Web Environment
Framework :: Flask
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
packages = find:
zip_safe = false
include_package_data = true
python_requires = ~=3.8
install_requires =
# TODO figure out the right minimum versions we need, or just
# require the versions that dropped python 2 as well to encourage
# people to use something recent..
Flask
Jinja2
blinker
importlib-metadata
[options.extras_require]
dev =
isort
pytest
pytest-cov
[options.packages.find]
include =
flask_pluginengine
flask_pluginengine.*