-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (26 loc) · 966 Bytes
/
setup.py
File metadata and controls
executable file
·35 lines (26 loc) · 966 Bytes
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
#!/usr/bin/python
from setuptools import setup, find_packages
from netrecon import __name__, __version__
setup(
# Application name:
name=__name__,
# Version number:
version=__version__,
# Application author details:
author="Avery Rozar",
author_email="avery.rozar@trolleyesecurity.com",
# Packages
packages=find_packages(exclude=('tests', 'docs')),
# Include additional files into the package
include_package_data=True,
# Details
url="https://www.trolleyesecurity.com",
#
license="LICENSE.txt",
description="Netrecon is a tool used to pull useful data from network infrastructure devices. "
"The currently supported device types are - Cisco IOS, Cisco ASAOS, Cisco NX-OX, and PANOS",
long_description=open("README.rst").read(),
# Dependent packages (distributions)
install_requires=['pexpect==4.8.0',
'netaddr==0.8.0'
])