forked from thomasvincent/python-network-discovery-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 1.02 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
from setuptools import setup, find_packages
import sys, os
version = '.1'
setup(name='auto-discover',
version=version,
description="A network discovery tool that uses nmap to identify if ssh,ping, and snmp are running on",
long_description=('\\n'
'various connected devices in a network.'),
classifiers=['Programming Language :: Python :: 2 :: Only, Topic :: System :: Systems Administration, Topic :: System :: Monitoring, '], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='nmap,portscanner,network,sysadmin',
author='Thomas Vincent',
author_email='[email protected]',
url='https://github.com/thomasvincent/python-auto-discover',
license='Apache',
packages=find_packages(exclude=['bnap', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)