-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (54 loc) · 1.37 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "gitops"
version = "0.14.1"
description = "Manage multiple apps across one or more k8s clusters."
requires-python = ">=3.12"
readme = "README.md"
authors = [{name = "Jarek Głowacki",email = "[email protected]"}]
dependencies = [
"invoke>=2.2.0",
"pyyaml>=6.0.2",
"dsnparse==0.2.1",
"colorama>=0.4.4",
"boto3==1.35.4",
"humanize>=3.5.0",
"tabulate>=0.8.9",
"packaging>=24.1",
]
[project.scripts]
gitops = "gitops.main:program.run"
[project.optional-dependencies]
server = [
"httpx>=0.23.0,<0.24.0",
"uvicorn>=0.17.6",
"fastapi==0.109.2",
"kubernetes_asyncio>=25.1.2",
"sentry-sdk>=1.3.0",
"uptick-observability[fastapi]>=0.2.2",
"slack-sdk>=3.33.5",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=8.3.2",
"ruff>=0.6.3",
"types-colorama>=0.4.15.20240311",
"mypy>=1.11.2",
"types-pyyaml>=6.0.12.20240808",
"types-tabulate>=0.9.0.20240106",
"boto3-stubs>=1.35.11",
"pytest-asyncio>=0.24.0",
]
[tool.uv.sources]
[tool.nitpick]
# Generated by the 'nitpick init' command
# More info at https://nitpick.rtfd.io/en/latest/configuration.html
style = [
'https://raw.githubusercontent.com/uptick/.github/main/nitpick/python.toml',
'py://nitpick/resources/any/commitizen',
]
cache = "never"
[tool.mypy]
exclude = ["tests"]