-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (26 loc) · 858 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
from setuptools import setup
setup(
name='aiohttp_traversal',
version='0.11.0',
description='Traversal based router for aiohttp.web',
classifiers=[
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP",
],
author='Alexander Zelenyak',
author_email='zzz.sochi@gmail.com',
license='BSD',
url='https://github.com/zzzsochi/aiohttp_traversal',
keywords=['asyncio', 'aiohttp', 'traversal', 'pyramid'],
packages=['aiohttp_traversal', 'aiohttp_traversal.ext'],
install_requires=[
'aiohttp >=2.0',
'resolver_deco',
'zope.dottedname',
],
tests_require=['pytest']
),