-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (28 loc) · 937 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
from setuptools import find_packages, setup
version = '1.0.7'
# When the project is installed by pip, this is the specification that is used to install its dependencies.
install_requires = [
"djangorestframework>=3.7.7",
"django>=2.2.1",
"PyJWT==1.6.1",
"requests>=2.20.0",
"cryptography>=2.3",
]
setup(
name='ridi-django-oauth2',
version=version,
url='https://github.com/ridi/django-oauth2',
license='MIT',
description='RIDI Django OAuth2 Library',
keywords=['oauth2', 'oauth2-resource', 'ridi', 'ridibooks'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Framework :: Django :: 2.0',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(exclude=["tests.*", "tests"]),
install_requires=install_requires,
include_package_data=True,
)