forked from stormsherpa/django-oauth2-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1014 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import provider
setup(
name='django-oauth2',
version=provider.__version__,
description='Provide OAuth2 access to your app (fork of django-oauth2-provider)',
long_description=open('README.rst').read(),
author='Shaun Kruger',
author_email='[email protected]',
url = 'https://github.com/stormsherpa/django-oauth2-provider',
packages= find_packages(exclude=('tests*',)),
license='The MIT License: http://www.opensource.org/licenses/mit-license.php',
platforms='all',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
install_requires=[
"shortuuid>=0.4",
"six>=0.11.0",
"sqlparse>=0.2.4",
],
include_package_data=True,
zip_safe=False,
)