-
Notifications
You must be signed in to change notification settings - Fork 0
/
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 = django-emailuser
url = https://github.com/eugenma/django-emailuser
description = A simple Django app with users identified by email instead of username.
long_description = file: README.rst
author = Eugen Massini
author_email = [email protected]
license = BSD License
classifiers =
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
[options]
package_dir=
=src
packages = find:
include_package_data = True
setup_requires =
setuptools_scm
install_requires =
Django>=3.0,<5.0
tests_require =
dateutil
pytest
pytest-django
python_requires = >=3.6
[options.packages.find]
where=src
[options.extras_require]
drf =
djangorestframework~=3.10, <3.14