forked from nmmapper/python3-nmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.33 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="python3-nmap",
version="1.6.0",
author="nmmapper",
author_email="[email protected]",
description="Python3-nmap converts Nmap commands into python3 methods making it very easy to use nmap in any of your python pentesting projects",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wangoloj/python3-nmap",
project_urls={
'Documentation': 'https://nmap.readthedocs.io/en/latest/',
'How it is used': 'https://www.nmmapper.com/sys/networkmapper/nmap/online-port-scanning/',
'Homepage': 'https://www.nmmapper.com/',
'Source': 'https://github.com/wangoloj/python3-nmap',
'Subdomain finder': 'https://www.nmmapper.com/sys/tools/subdomainfinder/',
'theHarvester online': 'https://www.nmmapper.com/sys/theharvester/email-harvester-tool/online/',
'Crosselling': 'https://www.byogyo.com/',
},
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: GNU General Public License v3.0",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
setup_requires=['wheel'],
install_requires=['simplejson'],
)