django-rest-auth/setup.py

51 lines
1.6 KiB
Python
Raw Normal View History

#!/usr/bin/env python
import os
2018-08-22 07:12:28 +03:00
from setuptools import setup, find_packages
here = os.path.dirname(os.path.abspath(__file__))
f = open(os.path.join(here, 'README.rst'))
long_description = f.read().strip()
f.close()
setup(
name='django-rest-auth',
2019-04-01 10:51:08 +03:00
version='0.9.5',
author='Sumit Chachra',
author_email='chachra@tivix.com',
url='http://github.com/Tivix/django-rest-auth',
description='Create a set of REST API endpoints for Authentication and Registration',
packages=find_packages(),
long_description=long_description,
keywords='django rest auth registration rest-framework django-registration api',
zip_safe=False,
install_requires=[
2017-10-31 19:13:57 +03:00
'Django>=1.8.0',
'djangorestframework>=3.1.3',
],
extras_require={
'with_social': ['django-allauth>=0.25.0'],
},
include_package_data=True,
classifiers=[
2019-04-19 20:45:46 +03:00
'Development Status :: 4 - Beta',
'Framework :: Django',
2019-04-19 20:45:46 +03:00
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
2019-04-19 20:45:46 +03:00
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
2019-04-19 20:45:46 +03:00
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development'
],
)