-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.cfg
73 lines (66 loc) · 1.66 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
61
62
63
64
65
66
67
68
69
70
71
72
73
[metadata]
name = django-app-helper
version = attr: app_helper.__version__
url = https://github.com/nephila/django-app-helper
project_urls =
Documentation = https://django-app-helper.readthedocs.io/
author = Iacopo Spalletti
author_email = [email protected]
description = Helper for django applications development
long_description = file: README.rst, HISTORY.rst
long_description_content_type = text/x-rst
license = GPLv2+
license_files = LICENSE
classifiers =
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Development Status :: 5 - Production/Stable
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Framework :: Django :: 5.0
Programming Language :: Python
Programming Language :: Python :: 3
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]
include_package_data = True
install_requires =
dj-database-url
docopt
six
setuptools; python_version>="3.12"
setup_requires =
setuptools
packages = find:
python_requires = >=3.7
test_suite = app_helper.tests
zip_safe = False
keywords =
django
tests
development
pytest
django-cms
[options.package_data]
* = *.txt, *.rst
app_helper = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po
[options.entry_points]
console_scripts =
django-app-helper = app_helper.main:main
[options.extras_require]
cms = django-cms>=3.7,<3.12
async =
channels
daphne
docs =
sphinx-rtd-theme
[upload]
repository = https://upload.pypi.org/legacy/
[sdist]
formats = zip
[bdist_wheel]
universal = 1