-
Notifications
You must be signed in to change notification settings - Fork 75
/
setup.py
30 lines (28 loc) · 1.04 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="OSfooler-ng",
version="v1.00a",
author='Jaime Sanchez (@segofensiva)',
author_email='jsanchez@seguridadofensiva.com',
description='OSfooler-ng prevents remote OS active/passive fingerprinting by tools like nmap or p0f',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/segofensiva/OSfooler-ng',
include_package_data=True,
entry_points = {
'console_scripts': ['osfooler-ng=osfooler_ng.osfooler_ng:main'],
},
packages=setuptools.find_packages(),
install_requires=open('requirements.txt').read().splitlines(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Networking",
"Programming Language :: Python",
"Topic :: Security",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
],
)