-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (58 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
69 lines (58 loc) · 1.35 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=65.5.0", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "arm-cli"
description = "Experimental CLI for deploying robotic applications"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Matthew Powelson" }]
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = [
"appdirs",
"beartype",
"click",
"click-completion",
"docker>=7.0.0",
"inquirer",
"pydantic",
]
[project.scripts]
arm-cli = "arm_cli.cli:cli"
[project.optional-dependencies]
dev = [
"black==24.8.0",
"isort==5.13.2",
"pytest",
"flake8",
"mypy",
"bandit[toml]",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["arm_cli*"]
[tool.setuptools.package-data]
"arm_cli.system.shell_scripts" = ["*.sh", "*.zsh", "*.fish"]
"arm_cli" = ["../resources/*.json"]
[tool.setuptools_scm]
write_to = "arm_cli/_version.py"
local_scheme = "node-and-date"
[tool.black]
line-length = 100
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3
extend_skip = ["arm_cli/_version.py"]
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.bandit]
exclude_dirs = ["tests", "venv", ".venv", "env", ".env"]
skips = ["B101", "B601"]
targets = ["arm_cli"]