-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (33 loc) · 1.03 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
35
36
37
38
39
# https://github.com/realpython/reader/blob/master/setup.py
import pathlib
from setuptools import setup
base_dir = pathlib.Path(__file__).resolve().parent
with open(base_dir / "requirements.txt", "r") as f:
deps = [x.strip() for x in f.readlines()]
with open(base_dir / "README.md", "r") as f:
readme = f.read()
setup(
name="attack-lookup",
version="1.0.3",
description="MITRE ATT&CK Lookup Tool",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/curated-intel/attack-lookup",
author="Zander Work",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8"
],
packages=["attack_lookup"],
python_requires=">=3.6",
include_package_data=True,
install_requires=deps,
entry_points={
"console_scripts": [
"attack-lookup=attack_lookup.__main__:main"
]
}
)