mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
commit
14d7beee13
@ -3,9 +3,7 @@ python:
|
|||||||
- "2.7"
|
- "2.7"
|
||||||
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
||||||
install:
|
install:
|
||||||
- "pip install --upgrade git+https://github.com/mitmproxy/netlib.git"
|
- "pip install --src .. -r requirements.txt"
|
||||||
- "pip install -r requirements.txt --use-mirrors"
|
|
||||||
- "pip install -r test/requirements.txt --use-mirrors"
|
|
||||||
# command to run tests, e.g. python setup.py test
|
# command to run tests, e.g. python setup.py test
|
||||||
script:
|
script:
|
||||||
- "nosetests --with-cov --cov-report term-missing"
|
- "nosetests --with-cov --cov-report term-missing"
|
||||||
|
197
pathod → libpathod/main.py
Executable file → Normal file
197
pathod → libpathod/main.py
Executable file → Normal file
@ -1,16 +1,181 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
import argparse, sys, logging, logging.handlers
|
import argparse, sys, logging, logging.handlers, os
|
||||||
import os
|
from . import pathoc as _pathoc, pathod as _pathod, utils, version, language
|
||||||
from libpathod import pathod, utils, version, language
|
from netlib import tcp, http_uastrings
|
||||||
|
|
||||||
|
|
||||||
def daemonize (stdin='/dev/null', stdout='/dev/null', stderr='/dev/null'):
|
def pathoc():
|
||||||
|
preparser = argparse.ArgumentParser(add_help=False)
|
||||||
|
preparser.add_argument(
|
||||||
|
"--show-uas", dest="showua", action="store_true", default=False,
|
||||||
|
help="Print user agent shortcuts and exit."
|
||||||
|
)
|
||||||
|
pa = preparser.parse_known_args()[0]
|
||||||
|
if pa.showua:
|
||||||
|
print "User agent strings:"
|
||||||
|
for i in http_uastrings.UASTRINGS:
|
||||||
|
print " ", i[1], i[0]
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
parser = argparse.ArgumentParser(description='A perverse HTTP client.', parents=[preparser])
|
||||||
|
parser.add_argument('--version', action='version', version="pathoc " + version.VERSION)
|
||||||
|
parser.add_argument(
|
||||||
|
"-c", dest="connect_to", type=str, default=False,
|
||||||
|
metavar = "HOST:PORT",
|
||||||
|
help="Issue an HTTP CONNECT to connect to the specified host."
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-n", dest='repeat', default=1, type=int, metavar="N",
|
||||||
|
help='Repeat requests N times'
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-p", dest="port", type=int, default=None,
|
||||||
|
help="Port. Defaults to 80, or 443 if SSL is active"
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-t", dest="timeout", type=int, default=None,
|
||||||
|
help="Connection timeout"
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
'host', type=str,
|
||||||
|
help='Host to connect to'
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
'request', type=str, nargs="+",
|
||||||
|
help='Request specification'
|
||||||
|
)
|
||||||
|
|
||||||
|
group = parser.add_argument_group(
|
||||||
|
'SSL',
|
||||||
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"-s", dest="ssl", action="store_true", default=False,
|
||||||
|
help="Connect with SSL"
|
||||||
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"-C", dest="clientcert", type=str, default=False,
|
||||||
|
help="Path to a file containing client certificate and private key"
|
||||||
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"-i", dest="sni", type=str, default=False,
|
||||||
|
help="SSL Server Name Indication"
|
||||||
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"--ciphers", dest="ciphers", type=str, default=False,
|
||||||
|
help="SSL cipher specification"
|
||||||
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"--sslversion", dest="sslversion", type=int, default=4,
|
||||||
|
choices=[1, 2, 3, 4],
|
||||||
|
help="Use a specified protocol - TLSv1, SSLv2, SSLv3, SSLv23. Default to SSLv23."
|
||||||
|
)
|
||||||
|
|
||||||
|
group = parser.add_argument_group(
|
||||||
|
'Controlling Output',
|
||||||
|
"""
|
||||||
|
Some of these options expand generated values for logging - if
|
||||||
|
you're generating large data, use them with caution.
|
||||||
|
"""
|
||||||
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"-I", dest="ignorecodes", type=str, default="",
|
||||||
|
help="Comma-separated list of response codes to ignore"
|
||||||
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"-S", dest="showssl", action="store_true", default=False,
|
||||||
|
help="Show info on SSL connection"
|
||||||
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"-e", dest="explain", action="store_true", default=False,
|
||||||
|
help="Explain requests"
|
||||||
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"-o", dest="oneshot", action="store_true", default=False,
|
||||||
|
help="Oneshot - exit after first non-ignored response"
|
||||||
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"-q", dest="showreq", action="store_true", default=False,
|
||||||
|
help="Print full request"
|
||||||
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"-r", dest="showresp", action="store_true", default=False,
|
||||||
|
help="Print full response"
|
||||||
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"-T", dest="ignoretimeout", action="store_true", default=False,
|
||||||
|
help="Ignore timeouts"
|
||||||
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"-x", dest="hexdump", action="store_true", default=False,
|
||||||
|
help="Output in hexdump format"
|
||||||
|
)
|
||||||
|
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
if args.port is None:
|
||||||
|
port = 443 if args.ssl else 80
|
||||||
|
else:
|
||||||
|
port = args.port
|
||||||
|
|
||||||
|
try:
|
||||||
|
codes = [int(i) for i in args.ignorecodes.split(",") if i]
|
||||||
|
except ValueError:
|
||||||
|
parser.error("Invalid return code specification: %s"%args.ignorecodes)
|
||||||
|
|
||||||
|
if args.connect_to:
|
||||||
|
parts = args.connect_to.split(":")
|
||||||
|
if len(parts) != 2:
|
||||||
|
parser.error("Invalid CONNECT specification: %s"%args.connect_to)
|
||||||
|
try:
|
||||||
|
parts[1] = int(parts[1])
|
||||||
|
except ValueError:
|
||||||
|
parser.error("Invalid CONNECT specification: %s"%args.connect_to)
|
||||||
|
connect_to = parts
|
||||||
|
else:
|
||||||
|
connect_to = None
|
||||||
|
|
||||||
|
try:
|
||||||
|
for i in range(args.repeat):
|
||||||
|
p = _pathoc.Pathoc(
|
||||||
|
(args.host, port),
|
||||||
|
ssl=args.ssl,
|
||||||
|
sni=args.sni,
|
||||||
|
sslversion=args.sslversion,
|
||||||
|
clientcert=args.clientcert,
|
||||||
|
ciphers=args.ciphers
|
||||||
|
)
|
||||||
|
try:
|
||||||
|
p.connect(connect_to)
|
||||||
|
except (tcp.NetLibError, _pathoc.PathocError), v:
|
||||||
|
print >> sys.stderr, str(v)
|
||||||
|
sys.exit(1)
|
||||||
|
if args.timeout:
|
||||||
|
p.settimeout(args.timeout)
|
||||||
|
for spec in args.request:
|
||||||
|
ret = p.print_request(
|
||||||
|
spec,
|
||||||
|
showreq=args.showreq,
|
||||||
|
showresp=args.showresp,
|
||||||
|
explain=args.explain,
|
||||||
|
showssl=args.showssl,
|
||||||
|
hexdump=args.hexdump,
|
||||||
|
ignorecodes=codes,
|
||||||
|
ignoretimeout=args.ignoretimeout
|
||||||
|
)
|
||||||
|
sys.stdout.flush()
|
||||||
|
if ret and args.oneshot:
|
||||||
|
sys.exit(0)
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def daemonize(stdin='/dev/null', stdout='/dev/null', stderr='/dev/null'):
|
||||||
try:
|
try:
|
||||||
pid = os.fork()
|
pid = os.fork()
|
||||||
if pid > 0:
|
if pid > 0:
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
except OSError, e:
|
except OSError, e:
|
||||||
sys.stderr.write ("fork #1 failed: (%d) %s\n" % (e.errno, e.strerror) )
|
sys.stderr.write("fork #1 failed: (%d) %s\n" % (e.errno, e.strerror))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
os.chdir("/")
|
os.chdir("/")
|
||||||
os.umask(0)
|
os.umask(0)
|
||||||
@ -20,7 +185,7 @@ def daemonize (stdin='/dev/null', stdout='/dev/null', stderr='/dev/null'):
|
|||||||
if pid > 0:
|
if pid > 0:
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
except OSError, e:
|
except OSError, e:
|
||||||
sys.stderr.write ("fork #2 failed: (%d) %s\n" % (e.errno, e.strerror) )
|
sys.stderr.write("fork #2 failed: (%d) %s\n" % (e.errno, e.strerror))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
si = open(stdin, 'rb')
|
si = open(stdin, 'rb')
|
||||||
so = open(stdout, 'a+b')
|
so = open(stdout, 'a+b')
|
||||||
@ -30,7 +195,7 @@ def daemonize (stdin='/dev/null', stdout='/dev/null', stderr='/dev/null'):
|
|||||||
os.dup2(se.fileno(), sys.stderr.fileno())
|
os.dup2(se.fileno(), sys.stderr.fileno())
|
||||||
|
|
||||||
|
|
||||||
def main(parser, args):
|
def pathod_main(parser, args):
|
||||||
certs = []
|
certs = []
|
||||||
for i in args.ssl_certs:
|
for i in args.ssl_certs:
|
||||||
parts = i.split("=", 1)
|
parts = i.split("=", 1)
|
||||||
@ -41,7 +206,7 @@ def main(parser, args):
|
|||||||
parser.error("Certificate file does not exist: %s"%parts[1])
|
parser.error("Certificate file does not exist: %s"%parts[1])
|
||||||
certs.append(parts)
|
certs.append(parts)
|
||||||
|
|
||||||
ssloptions = pathod.SSLOptions(
|
ssloptions = _pathod.SSLOptions(
|
||||||
cn = args.cn,
|
cn = args.cn,
|
||||||
confdir = args.confdir,
|
confdir = args.confdir,
|
||||||
not_after_connect = args.ssl_not_after_connect,
|
not_after_connect = args.ssl_not_after_connect,
|
||||||
@ -85,7 +250,7 @@ def main(parser, args):
|
|||||||
parser.error(v)
|
parser.error(v)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
pd = pathod.Pathod(
|
pd = _pathod.Pathod(
|
||||||
(args.address, args.port),
|
(args.address, args.port),
|
||||||
craftanchor = args.craftanchor,
|
craftanchor = args.craftanchor,
|
||||||
ssl = args.ssl,
|
ssl = args.ssl,
|
||||||
@ -103,7 +268,7 @@ def main(parser, args):
|
|||||||
hexdump = args.hexdump,
|
hexdump = args.hexdump,
|
||||||
explain = args.explain,
|
explain = args.explain,
|
||||||
)
|
)
|
||||||
except pathod.PathodError, v:
|
except _pathod.PathodError, v:
|
||||||
parser.error(str(v))
|
parser.error(str(v))
|
||||||
except language.FileAccessDenied, v:
|
except language.FileAccessDenied, v:
|
||||||
parser.error("%s You probably want to a -d argument."%str(v))
|
parser.error("%s You probably want to a -d argument."%str(v))
|
||||||
@ -115,7 +280,7 @@ def main(parser, args):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
def pathod():
|
||||||
parser = argparse.ArgumentParser(description='A pathological HTTP/S daemon.')
|
parser = argparse.ArgumentParser(description='A pathological HTTP/S daemon.')
|
||||||
parser.add_argument('--version', action='version', version="pathod " + version.VERSION)
|
parser.add_argument('--version', action='version', version="pathod " + version.VERSION)
|
||||||
parser.add_argument("-p", dest='port', default=9999, type=int, help='Port. Specify 0 to pick an arbitrary empty port.')
|
parser.add_argument("-p", dest='port', default=9999, type=int, help='Port. Specify 0 to pick an arbitrary empty port.')
|
||||||
@ -166,7 +331,6 @@ if __name__ == "__main__":
|
|||||||
help='Disable response crafting. If anchors are specified, they still work.'
|
help='Disable response crafting. If anchors are specified, they still work.'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
group = parser.add_argument_group(
|
group = parser.add_argument_group(
|
||||||
'SSL',
|
'SSL',
|
||||||
)
|
)
|
||||||
@ -176,7 +340,7 @@ if __name__ == "__main__":
|
|||||||
)
|
)
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
"--cn", dest="cn", type=str, default=None,
|
"--cn", dest="cn", type=str, default=None,
|
||||||
help="CN for generated SSL certs. Default: %s"%pathod.DEFAULT_CERT_DOMAIN
|
help="CN for generated SSL certs. Default: %s"%_pathod.DEFAULT_CERT_DOMAIN
|
||||||
)
|
)
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
"-C", dest='ssl_not_after_connect', default=False, action="store_true",
|
"-C", dest='ssl_not_after_connect', default=False, action="store_true",
|
||||||
@ -184,7 +348,7 @@ if __name__ == "__main__":
|
|||||||
)
|
)
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
"--cert", dest='ssl_certs', default=[], type=str,
|
"--cert", dest='ssl_certs', default=[], type=str,
|
||||||
metavar = "SPEC", action="append",
|
metavar = "SPEC", action="append",
|
||||||
help='Add an SSL certificate. SPEC is of the form "[domain=]path". '\
|
help='Add an SSL certificate. SPEC is of the form "[domain=]path". '\
|
||||||
'The domain may include a wildcard, and is equal to "*" if not specified. '\
|
'The domain may include a wildcard, and is equal to "*" if not specified. '\
|
||||||
'The file at path is a certificate in PEM format. If a private key is included in the PEM, '\
|
'The file at path is a certificate in PEM format. If a private key is included in the PEM, '\
|
||||||
@ -230,5 +394,8 @@ if __name__ == "__main__":
|
|||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
if args.daemonize:
|
if args.daemonize:
|
||||||
daemonize()
|
daemonize()
|
||||||
main(parser, args)
|
pathod_main(parser, args)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
pathoc()
|
170
pathoc
170
pathoc
@ -1,170 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
import argparse, sys
|
|
||||||
from libpathod import pathoc, version, language
|
|
||||||
from netlib import tcp, http_uastrings
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
preparser = argparse.ArgumentParser(add_help=False)
|
|
||||||
preparser.add_argument(
|
|
||||||
"--show-uas", dest="showua", action="store_true", default=False,
|
|
||||||
help="Print user agent shortcuts and exit."
|
|
||||||
)
|
|
||||||
pa = preparser.parse_known_args()[0]
|
|
||||||
if pa.showua:
|
|
||||||
print "User agent strings:"
|
|
||||||
for i in http_uastrings.UASTRINGS:
|
|
||||||
print " ", i[1], i[0]
|
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(description='A perverse HTTP client.', parents=[preparser])
|
|
||||||
parser.add_argument('--version', action='version', version="pathoc " + version.VERSION)
|
|
||||||
parser.add_argument(
|
|
||||||
"-c", dest="connect_to", type=str, default=False,
|
|
||||||
metavar = "HOST:PORT",
|
|
||||||
help="Issue an HTTP CONNECT to connect to the specified host."
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
|
||||||
"-n", dest='repeat', default=1, type=int, metavar="N",
|
|
||||||
help='Repeat requests N times'
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
|
||||||
"-p", dest="port", type=int, default=None,
|
|
||||||
help="Port. Defaults to 80, or 443 if SSL is active"
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
|
||||||
"-t", dest="timeout", type=int, default=None,
|
|
||||||
help="Connection timeout"
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
|
||||||
'host', type=str,
|
|
||||||
help='Host to connect to'
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
|
||||||
'request', type=str, nargs="+",
|
|
||||||
help='Request specification'
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
group = parser.add_argument_group(
|
|
||||||
'SSL',
|
|
||||||
)
|
|
||||||
group.add_argument(
|
|
||||||
"-s", dest="ssl", action="store_true", default=False,
|
|
||||||
help="Connect with SSL"
|
|
||||||
)
|
|
||||||
group.add_argument(
|
|
||||||
"-C", dest="clientcert", type=str, default=False,
|
|
||||||
help="Path to a file containing client certificate and private key"
|
|
||||||
)
|
|
||||||
group.add_argument(
|
|
||||||
"-i", dest="sni", type=str, default=False,
|
|
||||||
help="SSL Server Name Indication"
|
|
||||||
)
|
|
||||||
group.add_argument(
|
|
||||||
"--ciphers", dest="ciphers", type=str, default=False,
|
|
||||||
help="SSL cipher specification"
|
|
||||||
)
|
|
||||||
group.add_argument(
|
|
||||||
"--sslversion", dest="sslversion", type=int, default=4,
|
|
||||||
choices=[1, 2, 3, 4],
|
|
||||||
help="Use a specified protocol - TLSv1, SSLv2, SSLv3, SSLv23. Default to SSLv23."
|
|
||||||
)
|
|
||||||
|
|
||||||
group = parser.add_argument_group(
|
|
||||||
'Controlling Output',
|
|
||||||
"""
|
|
||||||
Some of these options expand generated values for logging - if
|
|
||||||
you're generating large data, use them with caution.
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
group.add_argument(
|
|
||||||
"-I", dest="ignorecodes", type=str, default="",
|
|
||||||
help="Comma-separated list of response codes to ignore"
|
|
||||||
)
|
|
||||||
group.add_argument(
|
|
||||||
"-S", dest="showssl", action="store_true", default=False,
|
|
||||||
help="Show info on SSL connection"
|
|
||||||
)
|
|
||||||
group.add_argument(
|
|
||||||
"-e", dest="explain", action="store_true", default=False,
|
|
||||||
help="Explain requests"
|
|
||||||
)
|
|
||||||
group.add_argument(
|
|
||||||
"-o", dest="oneshot", action="store_true", default=False,
|
|
||||||
help="Oneshot - exit after first non-ignored response"
|
|
||||||
)
|
|
||||||
group.add_argument(
|
|
||||||
"-q", dest="showreq", action="store_true", default=False,
|
|
||||||
help="Print full request"
|
|
||||||
)
|
|
||||||
group.add_argument(
|
|
||||||
"-r", dest="showresp", action="store_true", default=False,
|
|
||||||
help="Print full response"
|
|
||||||
)
|
|
||||||
group.add_argument(
|
|
||||||
"-T", dest="ignoretimeout", action="store_true", default=False,
|
|
||||||
help="Ignore timeouts"
|
|
||||||
)
|
|
||||||
group.add_argument(
|
|
||||||
"-x", dest="hexdump", action="store_true", default=False,
|
|
||||||
help="Output in hexdump format"
|
|
||||||
)
|
|
||||||
|
|
||||||
args = parser.parse_args()
|
|
||||||
|
|
||||||
if args.port is None:
|
|
||||||
port = 443 if args.ssl else 80
|
|
||||||
else:
|
|
||||||
port = args.port
|
|
||||||
|
|
||||||
try:
|
|
||||||
codes = [int(i) for i in args.ignorecodes.split(",") if i]
|
|
||||||
except ValueError:
|
|
||||||
parser.error("Invalid return code specification: %s"%args.ignorecodes)
|
|
||||||
|
|
||||||
if args.connect_to:
|
|
||||||
parts = args.connect_to.split(":")
|
|
||||||
if len(parts) != 2:
|
|
||||||
parser.error("Invalid CONNECT specification: %s"%args.connect_to)
|
|
||||||
try:
|
|
||||||
parts[1] = int(parts[1])
|
|
||||||
except ValueError:
|
|
||||||
parser.error("Invalid CONNECT specification: %s"%args.connect_to)
|
|
||||||
connect_to = parts
|
|
||||||
else:
|
|
||||||
connect_to = None
|
|
||||||
|
|
||||||
try:
|
|
||||||
for i in range(args.repeat):
|
|
||||||
p = pathoc.Pathoc(
|
|
||||||
(args.host, port),
|
|
||||||
ssl=args.ssl,
|
|
||||||
sni=args.sni,
|
|
||||||
sslversion=args.sslversion,
|
|
||||||
clientcert=args.clientcert,
|
|
||||||
ciphers=args.ciphers
|
|
||||||
)
|
|
||||||
try:
|
|
||||||
p.connect(connect_to)
|
|
||||||
except (tcp.NetLibError, pathoc.PathocError), v:
|
|
||||||
print >> sys.stderr, str(v)
|
|
||||||
sys.exit(1)
|
|
||||||
if args.timeout:
|
|
||||||
p.settimeout(args.timeout)
|
|
||||||
for spec in args.request:
|
|
||||||
ret = p.print_request(
|
|
||||||
spec,
|
|
||||||
showreq=args.showreq,
|
|
||||||
showresp=args.showresp,
|
|
||||||
explain=args.explain,
|
|
||||||
showssl=args.showssl,
|
|
||||||
hexdump=args.hexdump,
|
|
||||||
ignorecodes=codes,
|
|
||||||
ignoretimeout=args.ignoretimeout
|
|
||||||
)
|
|
||||||
sys.stdout.flush()
|
|
||||||
if ret and args.oneshot:
|
|
||||||
sys.exit(0)
|
|
||||||
except KeyboardInterrupt:
|
|
||||||
pass
|
|
||||||
|
|
@ -1,9 +1,2 @@
|
|||||||
Flask>=0.10.1
|
-e git+https://github.com/mitmproxy/netlib.git#egg=netlib
|
||||||
Jinja2>=2.7.1
|
-e .[dev]
|
||||||
MarkupSafe>=0.18
|
|
||||||
Werkzeug>=0.9.4
|
|
||||||
itsdangerous>=0.23
|
|
||||||
pyOpenSSL>=0.13.1
|
|
||||||
pyasn1>=0.1.7
|
|
||||||
requests>=2.4.0
|
|
||||||
netlib>=0.10
|
|
67
setup.py
67
setup.py
@ -2,6 +2,7 @@ from distutils.core import setup
|
|||||||
import fnmatch, os.path
|
import fnmatch, os.path
|
||||||
from libpathod import version
|
from libpathod import version
|
||||||
|
|
||||||
|
|
||||||
def _fnmatch(name, patternList):
|
def _fnmatch(name, patternList):
|
||||||
for i in patternList:
|
for i in patternList:
|
||||||
if fnmatch.fnmatch(name, i):
|
if fnmatch.fnmatch(name, i):
|
||||||
@ -64,31 +65,49 @@ def findPackages(path, dataExclude=[]):
|
|||||||
package_data[module] = acc
|
package_data[module] = acc
|
||||||
return packages, package_data
|
return packages, package_data
|
||||||
|
|
||||||
|
with open("README.txt", "rb") as f:
|
||||||
|
long_description = f.read()
|
||||||
|
|
||||||
long_description = file("README.txt","rb").read()
|
|
||||||
packages, package_data = findPackages("libpathod")
|
packages, package_data = findPackages("libpathod")
|
||||||
setup(
|
setup(
|
||||||
name = "pathod",
|
name="pathod",
|
||||||
version = version.VERSION,
|
version=version.VERSION,
|
||||||
description = "A pathological HTTP/S daemon for testing and stressing clients.",
|
description="A pathological HTTP/S daemon for testing and stressing clients.",
|
||||||
long_description = long_description,
|
long_description=long_description,
|
||||||
author = "Aldo Cortesi",
|
author="Aldo Cortesi",
|
||||||
author_email = "aldo@corte.si",
|
author_email="aldo@corte.si",
|
||||||
url = "http://pathod.net",
|
url="http://pathod.net",
|
||||||
packages = packages,
|
packages=packages,
|
||||||
package_data = package_data,
|
package_data=package_data,
|
||||||
scripts = ["pathod", "pathoc"],
|
entry_points={
|
||||||
classifiers = [
|
'console_scripts': [
|
||||||
"License :: OSI Approved :: MIT License",
|
"pathod = libpathod.main:pathod",
|
||||||
"Development Status :: 5 - Production/Stable",
|
"pathoc = libpathod.main:pathoc"
|
||||||
"Operating System :: POSIX",
|
]
|
||||||
"Programming Language :: Python",
|
},
|
||||||
"Programming Language :: Python :: 2",
|
classifiers=[
|
||||||
"Topic :: Internet",
|
"License :: OSI Approved :: MIT License",
|
||||||
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
"Development Status :: 5 - Production/Stable",
|
||||||
"Topic :: Software Development :: Testing",
|
"Operating System :: POSIX",
|
||||||
"Topic :: Software Development :: Testing :: Traffic Generation",
|
"Programming Language :: Python",
|
||||||
"Topic :: Internet :: WWW/HTTP",
|
"Programming Language :: Python :: 2",
|
||||||
],
|
"Topic :: Internet",
|
||||||
install_requires=['netlib>=%s'%version.MINORVERSION, "requests>=2.4.0", "Flask>=0.10.1"]
|
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
||||||
|
"Topic :: Software Development :: Testing",
|
||||||
|
"Topic :: Software Development :: Testing :: Traffic Generation",
|
||||||
|
"Topic :: Internet :: WWW/HTTP",
|
||||||
|
],
|
||||||
|
install_requires=[
|
||||||
|
'netlib>=%s' % version.MINORVERSION,
|
||||||
|
"requests>=2.4.0",
|
||||||
|
"Flask>=0.10.1"
|
||||||
|
],
|
||||||
|
extras_require={
|
||||||
|
'dev': [
|
||||||
|
"mock>=1.0.1",
|
||||||
|
"nose>=1.3.0",
|
||||||
|
"nose-cov>=1.6",
|
||||||
|
"coveralls>=0.4.1"
|
||||||
|
]
|
||||||
|
}
|
||||||
)
|
)
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
mock>=1.0.1
|
|
||||||
nose>=1.3.0
|
|
||||||
nose-cov>=1.6
|
|
||||||
coveralls>=0.4.1
|
|
Loading…
Reference in New Issue
Block a user