-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (30 loc) · 1.07 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
31
32
33
34
import os
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
os.umask(0o022)
setuptools.setup(
name="owwatcher",
version="2.2.2",
author="Mike Salvatore",
author_email="[email protected]",
description="Detects when world-writable directories or files are "
"created in a specific directory. Useful for finding TOCTOU "
"vulnerabilities.",
long_description=long_description,
long_description_content_type="text/markdown",
url="",
packages=setuptools.find_packages(exclude=["tests"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX :: Linux",
"Topic :: Security",
],
install_requires=["inotify"],
python_requires=">=3.5",
setup_requires=["pytest-runner", "pre-commit"],
tests_require=["pytest", "pytest-cov"],
entry_points={"console_scripts": ["owwatcher=owwatcher.__main__:main"]},
package_data={"owwatcher": ["owwatcher-default.conf"]},
)