forked from mushorg/oschameleon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 935 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
from setuptools import setup
import oschameleon
setup(
packages=["oschameleon", ],
name=oschameleon.__title__,
version=oschameleon.__version__,
author='MushMush',
author_email='[email protected]',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Security",
],
package_data={
"": ["*.txt", "*.md"],
},
include_package_data=True,
long_description=open('README.rst').read(),
url='https://github.com/mushorg/oschameleon',
description='OS Fingerprint Obfuscation for modern Linux Kernels',
test_suite='nose.collector',
tests_require="nose",
zip_safe=False,
install_requires=open('requirements.txt').read().splitlines(),
)