forked from chrislongo/HttpShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (39 loc) · 1.33 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
40
41
42
43
44
45
import sys
from httpshell import version
try:
from ez_setup import use_setuptools
use_setuptools()
except ImportError:
pass
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
REQUIRES = ["pygments>=1.1.1", "httplib2>=0.7.0", "oauth2>=1.5"]
if sys.version_info <= (2, 7):
REQUIRES.append("argparse>=1.2.1")
setup(
name="httpshell",
version=version.VERSION,
packages=["httpshell"],
install_requires=REQUIRES,
py_modules=["ez_setup"],
scripts=["httpsh"],
author="Chris Longo",
author_email="chris.longo@gmail.com",
url="https://github.com/chrislongo/HttpShell/",
download_url="http://github.com/downloads/chrislongo/HttpShell/httpshell-%s.tar.gz" % version.VERSION,
description="An interactive shell for issuing HTTP commands to a web server or REST API",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: System :: Networking"
]
)