-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
37 lines (32 loc) · 1.09 KB
/
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
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
from setuptools import setup
from os.path import join, dirname
try:
long_description = open(join(dirname(__file__), 'README.rst')).read()
except Exception:
long_description = None
setup(
name='asynchttp',
version='0.0.4',
description='A simple httplib2 based asynchronous HTTP library for python',
author='Ross McFarland',
author_email='ross@gmail.com',
url='http://github.com/ross/python-asynchttp',
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=['asynchttp'],
provides=['asynchttp'],
requires=['httplib2(>=0.5.0)'],
install_requires=['httplib2>=0.5.0'],
)