-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.28 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.28 KB
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
37
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="Nparallel",
version="0.3.0",
author='Ronny Dobra',
author_email='Ronny Dobra <6539575+RonnyDo@users.noreply.github.com>',
description='Speed up Nmap scans by running them in parallel',
long_description=lwong_description,
long_description_content_type="text/markdown",
maintainer='Ronny Dobra',
url='https://github.com/RonnyDo/nparallel',
project_urls={
'Documentation': 'https://nmap.readthedocs.io/en/latest/',
'How it is used': 'https://github.com/RonnyDo/nparallel/README.md',
'Source': 'https://github.com/RonnyDo/nparallel',
},
packages=["nparallel"], # name of the folder relative to this file where the source code lives
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
entry_points = { # this here is the magic that binds your function into a callable script
'console_scripts': ['nparallel=nparallel.nparallel:main'],
},
# optional installation
extras_require = {
'with_office_export': [
'xlsxwriter',
'python-docx',
]
}
)