Update trove classifiers

This commit is contained in:
Andrew Svetlov 2017-10-17 12:41:11 +03:00
parent 0694e6e084
commit cd833edb6c
1 changed files with 4 additions and 1 deletions

View File

@ -27,10 +27,12 @@ with codecs.open(os.path.join(os.path.abspath(os.path.dirname(
def read(f):
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
install_requires = ['aiohttp>=0.18']
tests_require = install_requires + ['pytest']
extras_require = {'session': 'aiohttp-session'}
setup(name='aiohttp-security',
version=version,
description=("security for aiohttp.web"),
@ -40,8 +42,9 @@ setup(name='aiohttp-security',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Framework :: AsyncIO',
],