-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
46 lines (42 loc) · 1.46 KB
/
setup.py
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
from setuptools import setup, find_packages
def get_description():
with open("README.rst") as f:
return f.read()
setup(
# Package meta-data
name="django-rest-email-auth",
version="4.0.3",
description="Django app for email based authentication and registration.",
long_description=get_description(),
author="Chathan Driehuys",
author_email="[email protected]",
url="https://github.com/cdriehuys/django-rest-email-auth",
license="MIT",
# Additional classifiers for PyPI
classifiers=[
"Development Status :: 5 - Production/Stable",
# Supported versions of Django
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
# Supported versions of Python
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
# Include the actual source code
include_package_data=True,
packages=find_packages(),
# Dependencies
install_requires=[
"Django >= 3.2, <= 4.2",
"django-email-utils >= 1.0, < 2.0",
# DRF 3.10 is the first to support our minimum Django version of 2.2.
"djangorestframework >= 3.14",
],
)