Add setuptools

authlib v0.1.0
informatic 2017-10-11 00:58:55 +02:00
parent fee3b622ee
commit 4dd1c63912
2 changed files with 38 additions and 0 deletions

2
setup.cfg Normal file
View File

@ -0,0 +1,2 @@
[bdist_wheel]
universal=1

36
setup.py Normal file
View File

@ -0,0 +1,36 @@
'''
Flask-SpaceAuth
---------------
Simple generic user authentication module using `Warsaw Hackerspace SSO Service
<https://code.hackerspace.pl/q3k/sso>`_.
Integrates with Flask-Login and Flask-OAuthlib
'''
from setuptools import setup
setup(
name='Flask-SpaceAuth',
version='0.1.0',
description='Warsaw Hackerspace SSO Flask module',
long_description=__doc__,
url='https://code.hackerspace.pl/informatic/flask-spaceauth',
author='Piotr Dobrowolski',
author_email='informatic@hackerspace.pl',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=['spaceauth'],
install_requires=['flask-oauthlib', 'flask-login', 'requests'],
)