-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
43 lines (39 loc) · 1.12 KB
/
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
38
39
40
41
42
43
[tool.poetry]
name = "atomic-operator"
version = "0.9.1"
description = "A python package to execute security tests on remote and local hosts"
authors = ["MSAdministrator <MSAdministrator@users.noreply.github.com>"]
maintainers = ["MSAdministrator <MSAdministrator@users.noreply.github.com>"]
readme = "README.md"
packages = [{include = "atomic_operator"}]
include = [
"atomic_operator/data/logging.yml"
]
homepage = "https://atomic-operator.com"
repository = "https://github.com/swimlane/atomic-operator"
documentation = "https://atomic-operator.com"
license = "MIT"
[tool.poetry.scripts]
atomic-operator = "atomic_operator.__main__:main"
[tool.poetry.dependencies]
python = "^3.8"
atomic-operator-runner = "^0.2.1"
fire = "^0.5.0"
pick = "^2.2.0"
rich = "^13.3.1"
attrs = "^23.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
pylama = "^8.4.1"
coverage = "^7.1.0"
Jinja2 = "^3.1.2"
mkdocs = "^1.4.2"
mkdocs-material = "^9.0.12"
mkdocs-material-extensions = "^1.1.1"
mkdocstrings = "^0.20.0"
black = "^23.1.0"
isort = "^5.12.0"
bandit = "^1.7.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"