forked from mushorg/tanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
15 lines (14 loc) · 650 Bytes
/
Copy pathsetup.py
File metadata and controls
15 lines (14 loc) · 650 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
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'])]
)