forked from theascone/dckrmgr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 847 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 847 Bytes
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
[project]
name = "portmgr"
version = "1.10.0"
description = "Simple command interface to manage multiple Docker container"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"humanfriendly~=10.0",
"jsonschema~=3.2.0",
"pyyaml~=6.0.2",
"tabulate~=0.8.9",
]
[project.optional-dependencies]
secrets = ["pyrage"]
[dependency-groups]
dev = ["pytest>=8", "ruff>=0.9"]
[tool.ruff]
target-version = "py311"
[tool.ruff.lint.per-file-ignores]
# __init__.py re-exports the package's public API (main, command_list, etc.).
"__init__.py" = ["F401"]
[tool.uv]
package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
Website = "https://github.com/Craeckie/portmgr"
Repository = "https://github.com/Craeckie/portmgr.git"
[project.scripts]
portmgr = "portmgr:main"