-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (29 loc) · 1.09 KB
/
setup.py
File metadata and controls
35 lines (29 loc) · 1.09 KB
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
32
33
34
35
from setuptools import setup, find_packages
install_requires = ['tornado==4.1',
'requests']
tests_require = install_requires + ['vmock',
'nose',
'nosexcover']
setup(
name='httputil',
packages=find_packages(),
version='0.6.7',
description='Various utilities to deal with HTTP stuff.',
author='Vovan Kuznetsov',
author_email='vovanec@gmail.com',
maintainer_email='vovanec@gmail.com',
url='https://github.com/vovanec/httputil',
download_url='https://github.com/vovanec/httputil/tarball/0.6.7',
keywords=['http', 'dechunk', 'decompress', 'client', 'request', 'asynchronous'],
license='MIT',
classifiers=['License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.4'],
install_requires=install_requires,
tests_require=tests_require,
test_suite='nose.collector',
extras_require={
'test': tests_require,
},
)