-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 895 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="oneauth",
version="0.1.0",
author="Edouard Carvalho",
author_email="[email protected]",
description="Swappable `Smart` user model with JWT-based authentication and OTP APIs.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/techoutlooks/django-oneauth",
packages=setuptools.find_packages(),
python_requires='>=3.6',
install_requires=[
"Django>=2.2",
"phonenumbers>=8.11.1",
"django-phonenumber-field>=4.0",
"django-cors-headers>=3.2",
"djangorestframework>=3.10",
"djangorestframework-simplejwt>=4.3",
"django-rest-framework-loopback-js-filters>=1.1.4",
"twilio>=6.33.1",
"django-pandas>=0.6.1"
]
)