forked from gnarlychicken/aiohttp_auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (25 loc) · 950 Bytes
/
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
from setuptools import setup, find_packages
requires = ['aiohttp',
'ticket_auth',]
tests_require = ['aiohttp_session']
setup(
name="aiohttp_auth",
version='0.1.1',
description='Authorization and authentication middleware plugin for aiohttp.',
long_description=open('README.rst').read(),
install_requires=requires,
packages=find_packages(exclude=['tests*']),
author='Gnarly Chicken',
author_email='gnarlychicken@gmx.com',
test_suite='tests',
tests_require=tests_require,
url='https://github.com/gnarlychicken/aiohttp_auth',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: Session',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
],)