-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
26 lines (25 loc) · 918 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
from setuptools import setup, find_packages
import os
import orthrus
setup(
name = "orthrus",
version = orthrus.__version__,
author = "Bhargava Shastry, and Markus Leutner",
author_email = "bshastry@sec.t-labs.tu-berlin.de",
description = "A tool for end-to-end security testing.",
license = "GPLv3",
url = "https://github.com/test-pipeline/orthrus.git",
long_description = open('./README.md', 'r').read(),
packages = find_packages(),
data_files=[(os.path.expanduser('~') + '/.orthrus', ['conf/orthrus.conf', 'gdb-orthrus/gdb_orthrus.py'])],
classifiers=["Topic :: Security",
"Programming Language :: Python :: 2",
"Operating System :: POSIX :: Linux"],
scripts = ['tool/orthrus'],
keywords=[ 'Fuzzing',
'American Fuzzy Lop',
'Triage'
],
test_suite='tests',
zip_safe = False
)