-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (48 loc) · 1.44 KB
/
setup.py
File metadata and controls
49 lines (48 loc) · 1.44 KB
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
40
41
42
43
44
45
46
47
48
49
from setuptools import find_packages, setup
setup(
name="threatmap",
version="2.1.0",
description="Static IaC threat modeler using STRIDE, MITRE, and PASTA",
author="Bogdan Ticu",
author_email="bogdanticuoffice@gmail.com",
url="https://github.com/bogdanticu88/threatmap",
license="MIT",
packages=find_packages(exclude=["tests*"]),
python_requires=">=3.9",
install_requires=[
"python-hcl2>=4.3.0",
"pyyaml>=6.0.1",
"click>=8.1.0",
"rich>=13.0.0",
"jinja2>=3.1.0",
"fastapi>=0.104.0,<1.0",
"uvicorn>=0.24.0,<1.0",
"python-multipart>=0.0.6,<1.0",
"strawberry-graphql[fastapi]",
],
extras_require={
"dev": [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"httpx>=0.24.0",
]
},
entry_points={
"console_scripts": [
"threatmap=threatmap.cli:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Security",
"Topic :: System :: Systems Administration",
],
)