-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
28 lines (26 loc) · 1.11 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
from setuptools import setup
exec([l for l in open("flask_mwoauth/__init__.py")
if l.startswith('__version__')][0])
setup(name='flask-mwoauth',
version=__version__,
description='Flask blueprint to connect to a MediaWiki OAuth server',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='http://github.com/valhallasw/flask-mwoauth',
author='Merlijn van Deen',
author_email='[email protected]',
license='MIT',
packages=['flask_mwoauth'],
install_requires=['mwoauth', 'requests-oauthlib', 'Flask',
'requests>=2.0.1', 'future'],
zip_safe=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"]
)