forked from compiler-explorer/infra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 943 Bytes
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 943 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
[project]
name = "compiler-explorer-infra"
version = "0.0.1"
description = "Compiler Explorer infrastructure"
authors = [
{name = "Matt Godbolt", email = "matt@godbolt.org"},
{name = "partouf", email = "partouf@gmail.com"}
]
requires-python = ">=3.12"
dependencies = [
"aws-embedded-metrics>=3.3.0",
"boto3>=1.24.80",
"cairosvg>=2.7.0",
"click>=8.1.3",
"Jinja2>=3.1.6",
"paramiko>=3.4.0",
"python-dateutil>=2.8.2",
"requests>=2.32.2",
"PyYAML>=6.0",
"requests-cache>=1.2.1"
]
[tool.uv]
dev-dependencies = [
"pytest>=8.2.2",
"pre-commit>=3.7.1",
"requests-mock>=1.10.0",
"ruff>=0.11.7"
]
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = [
# https://docs.astral.sh/ruff/rules/
"E", # pycodestyle errors,
"W", # pycodestyle warnings
"F", # pyflake
"B", # flake8-bugbear
"I", # isort
]
ignore = [
"E501" # line length
]