-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (26 loc) · 811 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 distutils.core import setup
setup(
name='tornado-uvloop',
version='0.2.0',
packages=['tornadouvloop'],
url='https://github.com/mehmetkose/tornado-uvloop',
license='MIT',
author='Mehmet Kose',
author_email='[email protected]',
description='super simple uvloop class for tornado framework',
platforms=('linux'),
keywords=['tornado','asyncio','uvloop'],
install_requires=[
'tornado>=4.4.0',
'uvloop>=0.6.0',
],
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Environment :: Web Environment",
"Topic :: Utilities",
],
)