forked from cedadev/dot-restrict-scopes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (32 loc) · 1.15 KB
/
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
34
35
36
37
38
39
#!/usr/bin/env python3
import os, re
from setuptools import setup, find_packages
import versioneer
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
if __name__ == "__main__":
setup(
name = 'dot-restrict-scopes',
version = versioneer.get_version(),
cmdclass = versioneer.get_cmdclass(),
description = 'Django OAuth Toolkit extension to restrict the scopes available for an application.',
long_description = README,
classifiers = [
"Programming Language :: Python",
"Framework :: Django",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author = 'Matt Pryor',
author_email = '[email protected]',
url = 'https://github.com/cedadev/dot-restrict-scopes',
keywords = 'django oauth restrict application scopes',
packages = find_packages(),
include_package_data = True,
zip_safe = False,
install_requires = [
'django',
'django-oauth-toolkit',
],
)