-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
51 lines (47 loc) · 1.26 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
[metadata]
name = django_simple_redirects
version = attr: simple_redirects.__version__
description = django.contrib.redirects without django.contrib.sites
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/feinheit/django-simple-redirects/
author = Matthias Kestenholz
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
Environment :: Web Environment
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
[options]
packages = find:
install_requires =
Django>=3.2
python_requires = >=3.8
include_package_data = True
zip_safe = False
[options.packages.find]
exclude =
tests
tests.*
[options.extras_require]
tests =
coverage
[coverage:run]
branch = True
include =
*simple_redirects*
omit =
*migrations*
*.tox*