-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·29 lines (24 loc) · 889 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="fuzzmon",
version="0.4",
packages=["fuzz_proxy"],
author="Alex Moneger",
author_email="alexmgr+github@gmail.com",
description=(
"A transport layer proxy which monitors the target server using ptrace"),
license="MIT",
keywords=["proxy", "fuzzing", "debugger", "ptrace", "bsd"],
url="https://github.com/alexmgr/fuzzmon",
install_requires=["python-ptrace", "distorm3"],
scripts=["fuzzmon", "fuzzreplay"],
# generate rst from .md: pandoc --from=markdown --to=rst README.md -o README.rst
long_description=read("README.rst") if os.path.isfile("README.rst") else read("README.md"),
test_suite="nose.collector",
tests_require=["nose"]
)