forked from saaj/tornado-httpclient-session
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (24 loc) · 849 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (24 loc) · 849 Bytes
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
VERSION = '0.2.0'
setup(name='tornado-httpclient-session',
version=VERSION,
packages=['httpclient_session', 'httpclient_session.test',
'httpclient_session.contrib'],
test_suite='httpclient_session.test',
author='mailto1587',
author_email='mailto1587@gmail.com',
description='Session support to tornado.httpclient.',
license='http://opensource.org/licenses/MIT',
url='https://github.com/mailto1587/tornado-httpclient-session',
keywords=['Tornado', 'HttpClient', 'Session'],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
install_requires=[
'tornado>=6.1'
])