forked from AetherBlack/abuseACL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (28 loc) · 906 Bytes
/
setup.py
File metadata and controls
36 lines (28 loc) · 906 Bytes
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
from os import path
import setuptools
import abuseACL
cwd = path.abspath(path.dirname(__file__))
with open(path.join(cwd, "README.md")) as f:
long_description = f.read()
with open(path.join(cwd, "requirements.txt")) as f:
requirements = f.read()
setuptools.setup(
name="abuseACL",
version=abuseACL.__version__,
description="List vulnerable ACL.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AetherBlack/abuseACL",
author="Aether",
classifiers=[
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3"
],
keywords="abuseACL ActiveDirectory AD",
packages=setuptools.find_packages(),
python_requires=">=3.6, <4",
install_requires=requirements,
entry_points={
"console_scripts": ["abuseACL=abuseACL.__main__:main"]
}
)