forked from ecometrica/django-multisite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
56 lines (51 loc) · 1.3 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
[metadata]
name = django-multisite2
description=Serve multiple sites from a single Django application
long_description = file: README.rst
long_description_content_type=text/x-rst
author=Leonid S Shestera
maintainer=Ecometrica
url=http://github.com/erikvw/django-multisite
packages=find_packages()
include_package_data=True
classifiers=
Development Status :: 4 - Beta
Environment :: Web Environment
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Internet
Topic :: Internet :: WWW/HTTP
Topic :: Software Development :: Libraries
Topic :: Utilities
[options]
python_requires = >=3.11
zip_safe = False
include_package_data = True
packages = find:
install_requires =
tldextract
tests_require =
coverage
mock
pytest
pytest-cov
pytest-django
tox
pluggy
pytest-runner
Django>=4.2,<5.0
[aliases]
test=pytest
[flake8]
ignore = E226,W503,E203
max-line-length = 95
max-complexity = 10
exclude = */migrations/*,.tox,.git,__pycache__,build,dist,.eggs
per-file-ignores = __init__.py: F401