diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..3c6e79c --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..84952ee --- /dev/null +++ b/setup.py @@ -0,0 +1,36 @@ +''' +Flask-SpaceAuth +--------------- +Simple generic user authentication module using `Warsaw Hackerspace SSO Service +`_. +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'], +)