-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
16 lines (16 loc) · 860 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python3
from distutils.core import setup
setup(
name='netstat-virustotal-monitor',
version=0.1,
py_modules=['virustotal','dnsbl'],
install_requires=['gevent','IPy','greenlet','pygeoip','argparse','ConfigParser']
url='https://github.com/PSJoshi/netstat-virustotal-monitor',
author='Joshi Pradyumna',
author_email='[email protected]',
license='Apache',
description='python based network connection monitoring tool',
keywords="network connection monitoring",
long_description=
"python-based script enhances netstat command output to include city, country and ASN information using Maxmind Geolite databases. In addition, it also checks whether the remote IP is in malicious or not using Virustotal database and DNS-based Blackhole List (DNSBL) databases.",
platforms=['Linux','Windows'])