-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (31 loc) · 1.06 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
from setuptools import setup
setup(
name='txoauth2',
version='1.2.1',
author='Sebastian Scholz',
author_email='[email protected]',
description='A module that allows implementing OAuth2 with twisted',
long_description='A module that allows implementing an OAuth2 authorization and token '
'endpoint with twisted. See the Github repository for more info.',
license='MIT',
keywords=['OAuth2', 'twisted'],
url='https://github.com/Abestanis/TxOauth2',
packages=['txoauth2'],
install_requires=['twisted'],
extras_require={
':python_version < "3.0"': [
'enum34',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Security',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Twisted',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)