-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (42 loc) · 1.35 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
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
# Naming Area
name="django-rest-social-email-auth",
# Version Area
version='0.1.0',
# Description Area
description="This is an authentication module template with social (Oauth2) Authentication, knox-rest and email account verification with password reset framework.",
long_description=long_description,
long_description_content_type="text/x-rst",
license="MIT",
url="https://github.com/hacknd/django-rest-social-email-auth",
author="HackND",
author_email="benkaranja43@gmail.com",
classifiers=[
"Development Status :: 3 - Alpha",
# Supported versions of Django
"Framework :: Django",
"Intended Audience :: Developers",
"Natural Language :: English",
# Supported versions of Python
"Programming Language :: Python",
],
# Include the actual source code
include_package_data=True,
packages=find_packages(),
# Dependencies
install_requires=[
"Django >= 3.0",
"djangorestframework >= 3.0",
"django-email-utils < 1.0",
"django-rest-knox > 4.0",
"social-auth-app-django>=3.1.0",
"rest-social-auth>=2.1.0"
],
)