-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (30 loc) · 1013 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
29
30
31
32
33
#!/usr/bin/env python
from io import open
from setuptools import setup, find_packages
setup(
name='django_mobile_auth',
version='0.2.9',
packages=find_packages(),
license='MIT',
author='Ricardo S. A. Silva',
description='A Django app that allows users to authenticate using email, phone number or username.',
keywords='django auth email phone',
author_email='ricardo@salamandra.cc',
long_description=open('README.md').read(),
install_requires=[
'django',
'django-phonenumber-field==3.0.1',
'phonenumberslite==8.3.2'
],
include_package_data=True,
url='https://github.com/ricardosasilva/django_mobile_auth',
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
]
)