-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·41 lines (32 loc) · 1003 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
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/python2
from setuptools import setup, find_packages
setup(
# Application name:
name="perception",
# Version number (initial):
version="0.5",
# Application author details:
author="Avery Rozar",
author_email="[email protected]",
# Packages
packages=find_packages(exclude=('tests', 'docs')),
# Include additional files into the package
include_package_data=True,
# Details
url="https://www.critical-sec/com/perception",
#
license="LICENSE.txt",
description="",
long_description=open("README.rst").read(),
# Dependent packages (distributions)
install_requires=['alembic',
'sqlalchemy',
'scapy',
'pyOpenSSL',
'psycopg2',
'cryptography',
'pexpect',
'pika',
'xlsxwriter',
'pytz',
])