forked from bitly/simplehttp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (34 loc) · 1.01 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
38
39
from setuptools import setup
# release steps
# ---------------
# update version variable (below)
# update pysimplehttp/src/__init__.__version__
# run python setup.py sdist
# upload .tar.gz to github
# run python setup.py register to update pypi
__version__ = "0.2.1"
scripts = ['pysimplehttp/scripts/ps_to_sq.py',
'pysimplehttp/scripts/file_to_sq.py']
setup(
name='pysimplehttp',
version=__version__,
author='Jehiah Czebotar',
author_email='jehiah@gmail.com',
description='Python libraries for simplehttp',
url='https://github.com/bitly/simplehttp',
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
],
download_url="http://github.com/downloads/bitly/simplehttp/pysimplehttp-%s.tar.gz" %__version__,
packages=['pysimplehttp'],
package_dir = {'pysimplehttp' : 'pysimplehttp/src'},
scripts = scripts,
install_requires = [
'tornado',
],
requires = [
'ujson',
'host_pool',
],
)