forked from csirtgadgets/bearded-avenger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.32 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import os
from setuptools import setup, find_packages
import versioneer
# vagrant doesn't appreciate hard-linking
if os.environ.get('USER') == 'vagrant' or os.path.isdir('/vagrant'):
del os.link
with open('requirements.txt') as f:
reqs = f.read().splitlines()
setup(
name="bearded-avenger",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="CIF",
long_description="",
url="https://github.com/csirtgadgets/bearded-avenger",
license='LGPL3',
classifiers=[
"Topic :: System :: Networking",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
],
keywords=['security'],
author="Wes Young",
author_email="[email protected]",
packages=find_packages(),
install_requires=reqs,
scripts=[],
entry_points={
'console_scripts': [
'cif=cif.client:main',
'cif-smrt=cif.smrt:main',
'cif-router=cif.router:main',
'cif-hunter=cif.hunter:main',
'cif-gatherer=cif.gatherer:main',
'cif-httpd=cif.httpd:main',
'cif-storage=cif.storage:main',
]
},
)