-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
60 lines (54 loc) · 1.37 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[metadata]
name = django-app-enabler
version = attr: app_enabler.__version__
url = https://github.com/nephila/django-app-enabler
project_urls =
Documentation = https://django-app-enabler.readthedocs.io/
author = Nephila
author_email = info@nephila.it
description = Autoconfigurator for django applications
long_description = file: README.rst, HISTORY.rst
long_description_content_type = text/x-rst
license = BSD
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Framework :: Django
Intended Audience :: Developers
Natural Language :: English
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
include_package_data = True
install_requires =
astor
click
setup_requires =
setuptools
packages = app_enabler
python_requires = >=3.8
test_suite = pytest
zip_safe = False
[options.package_data]
* = *.txt, *.rst
app_enabler = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po
[options.extras_require]
docs =
django<5.0
sphinx-click
sphinx-rtd-theme
[options.entry_points]
console_scripts =
django-enabler = app_enabler.__main__:execute
[sdist]
formats = zip
[bdist_wheel]
universal = 1