-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathsetup.py
26 lines (25 loc) · 837 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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="Tanner",
version="0.6.0",
description="He who flays the hide",
author="MushMush Foundation",
author_email="glastopf@public.honeynet.org",
url="https://github.com/mushorg/tanner",
packages=find_packages(exclude=["*.pyc"]),
scripts=["bin/tanner", "bin/tannerweb", "bin/tannerapi"],
data_files=[
("/opt/tanner/db/", ["tanner/data/db_config.json", "tanner/data/GeoLite2-City.mmdb"]),
(
"/opt/tanner/data/",
[
"tanner/data/dorks.pickle",
"tanner/data/crawler_user_agents.txt",
"tanner/files/engines/mako.py",
"tanner/files/engines/tornado.py",
"tanner/data/config.yaml",
],
),
],
)