-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 919 Bytes
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 919 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
38
39
40
41
42
43
44
45
46
47
[project]
name = "blindern-deployer"
version = "0.1.0"
description = "Automated deployment of our services"
authors = [{ name = "Henrik Steen", email = "henrist@henrist.net" }]
requires-python = "==3.13.*"
dependencies = [
"ansible==13.6.0",
"Flask==3.1.3",
"Flask-Injector==0.15.0",
"gunicorn==25.3.0",
"injector==0.24.0",
"NamedAtomicLock==1.1.3",
"pydantic==2.13.3",
"PyJWT[crypto]>=2.8.0",
"python-dotenv==1.2.2",
]
[dependency-groups]
dev = [
"pre-commit==4.6.0",
"pytest==9.0.3",
"ruff==0.15.12",
"ty==0.0.32",
]
[tool.uv]
package = false
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
]
[tool.ty.rules]
unresolved-import = "warn"