mirror of
				https://github.com/Tivix/django-rest-auth.git
				synced 2025-10-31 15:57:34 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python
 | |
| 
 | |
| import os
 | |
| 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',
 | |
|     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=[
 | |
|         'Django>=1.8.0',
 | |
|         'djangorestframework>=3.1.3',
 | |
|         'six>=1.9.0',
 | |
|     ],
 | |
|     extras_require={
 | |
|         'with_social': ['django-allauth>=0.25.0'],
 | |
|     },
 | |
|     tests_require=[
 | |
|         'responses>=0.5.0',
 | |
|         'django-allauth>=0.25.0',
 | |
|         'djangorestframework-jwt>=1.9.0',
 | |
|     ],
 | |
|     test_suite='runtests.runtests',
 | |
|     include_package_data=True,
 | |
|     classifiers=[
 | |
|         'Framework :: Django',
 | |
|         'Intended Audience :: Developers',
 | |
|         'Intended Audience :: System Administrators',
 | |
|         'Operating System :: OS Independent',
 | |
|         'Topic :: Software Development'
 | |
|     ],
 | |
| )
 |