-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (34 loc) · 945 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
import setuptools
with open("README.md", "r") as f:
readme = f.read()
setuptools.setup(
name="nmapper",
version="0.3.1",
description="Scan and list local network hosts",
long_description=readme,
long_description_content_type="text/markdown",
author="Jose L. Ortiz",
author_email='[email protected]',
url="https://github.com/bandaangosta/nmapper",
packages=["nmapper"],
package_data={"nmapper": ["resources/*"]},
entry_points={
"console_scripts": [
"nmapper=nmapper.__main__:main"
],
},
license="MIT",
install_requires=[
"click==7.1.2",
"typer==0.3.2",
"configparser==4.0.2",
"python-nmap==0.6.1",
"config-path==1.0.2",
"rich==10.9.0"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)