-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
33 lines (31 loc) · 947 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
from setuptools import setup
import oschameleon
setup(
packages=[
"oschameleon",
],
name=oschameleon.__title__,
version=oschameleon.__version__,
author="MushMush",
author_email="glaslos@gmail.com",
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.md").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(),
)