-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
37 lines (34 loc) · 1.22 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
# coding: utf-8
import os
from setuptools import setup
import djoauth2
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
REQUIREMENTS = [
line.strip() for line in open(os.path.join(os.path.dirname(__file__),
'requirements.txt')).readlines()]
setup(
name='djoauth2',
version=djoauth2.__version__,
packages=['djoauth2', 'djoauth2.tests'],
include_package_data=True,
license='MIT License',
description='OAuth 2.0 server implementation.',
long_description=README,
url='https://github.com/Locu/djoauth2/',
download_url='https://github.com/Locu/djoauth2/tarball/{}'.format(
djoauth2.__version__),
keywords=['oauth', 'oauth2', 'django'],
install_requires=REQUIREMENTS,
author='Locu, Inc.',
author_email='[email protected]',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
)