forked from celiao/django-rest-authemail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (48 loc) · 1.88 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
47
48
49
50
51
52
# -*- coding: utf-8 -*-
# See http://pythonhosted.org/an_example_pypi_project/setuptools.html
# See https://packaging.python.org/tutorials/packaging-projects/#uploading-your-project-to-pypi
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='django-rest-authemail',
version='2.1.2',
author='Celia Oakley',
author_email='celia.oakley@alumni.stanford.edu',
description='A RESTful API for user signup and authentication using email addresses',
keywords=[
'django', 'python', 'rest', 'rest-framework', 'api',
'auth', 'authentication', 'email', 'user', 'username',
'registration', 'signup', 'login', 'logout', 'password',
'django-rest-framework', 'djangorestframework', 'django-registration',
'django-email-as-username'
],
url='http://github.com/celiao/django-rest-authemail',
download_url='https://github.com/celiao/django-rest-authemail/tarball/2.1.2',
packages=['authemail'],
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'Django>=2.2.8,<=3.1.7',
'djangorestframework==3.12.4',
'requests>=2.3.0',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development',
'Topic :: Utilities',
],
)