forked from iloveitaly/docker-hosts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 1.07 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
[project]
name = "docker-hosts"
version = "0.1.0"
description = "Automatically manage Docker container hostnames in /etc/hosts for local development and CI"
keywords = ["docker", "docker-compose", "hosts", "localhost", "development", "devops", "containers", "networking", "automation"]
readme = "README.md"
requires-python = ">=3.11"
dependencies = ["click", "docker", "structlog-config"]
authors = [{ name = "Michael Bianco", email = "mike@mikebian.co" }]
urls = { "Repository" = "https://github.com/iloveitaly/docker-hosts" }
# additional packaging information: https://packaging.python.org/en/latest/specifications/core-metadata/#license
[project.scripts]
docker-hosts = "docker_hosts:main"
[build-system]
requires = ["uv_build>=0.8.11,<0.9.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
# avoids the src/ directory structure
module-root = ""
[dependency-groups]
dev = ["pytest>=8.3.3","pyright>=1.1.380","ruff>=0.8.0"]
[tool.pytest.ini_options]
markers = [
"integration: integration tests that require Docker running",
"unit: unit tests that don't require Docker",
]