-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.27 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
44
45
[project]
name="ecs-deplojo"
dynamic = ["version"]
authors = [
{name = "Lab Digital B.V.", email = "opensource@labdigital.nl"},
]
description="Deployment tool for Amazon ECS"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
dependencies = [
"boto3>=1.36.2",
"click>=8.1.8",
"pyaml>=25.1.0",
"pytz>=2024.2",
]
[project.scripts]
ecs-deplojo = "ecs_deplojo.cli:main"
[build-system]
requires = ["setuptools", "setuptools-scm[toml]"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[tool.coverage.run]
branch = true
source = ["ecs_deplojo"]
[tool.coverage.paths]
source = ["src", ".tox/*/site-packages"]
[dependency-groups]
test = [
"coverage[toml]>=7.6.10",
"moto>=5.0.27",
"pytest-cov>=6.0.0",
"ruff>=0.9.2",
]
dev = [
"setuptools-scm>=8.1.0",
]