forked from stevengoossensB/pyattck
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (33 loc) · 907 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "pyattck"
version = "7.2.0"
description = "A Python package to interact with the Mitre ATT&CK Frameworks"
authors = ["Swimlane <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/swimlane/pyattck"
repository = "https://github.com/swimlane/pyattck"
[tool.poetry.scripts]
pyattck = "pyattck.cli:main"
[tool.poetry.dependencies]
python = "^3.10"
requests = ">=2.27.1"
# fire = "^0.4.0"
attrs = ">=21.4.0"
pyattck-data = { git = "https://github.com/CAPESandbox/pyattck-data"}
# rich = "^12.5.1"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.1.2"
pylama = ">=8.3.8"
coverage = ">=6.4.1"
recommonmark = ">=0.7.1"
black = ">=22.3.0"
isort = ">=5.10.1"
flake8 = ">=4.0.1"
bandit = ">=1.7.4"
Sphinx = "<4.4.0"
importlib-metadata = "<3.4"
safety = ">=2.3.5"
[build-system]
requires = ["poetry-core>=1.4.0"]
build-backend = "poetry.core.masonry.api"