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
40 lines (36 loc) · 847 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 847 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
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.poetry]
name = "compiler-explorer-infra"
version = "0.0.1"
description = "Compiler Explorer infrastructure"
authors = ["Matt Godbolt <matt@godbolt.org>", "partouf <partouf@gmail.com>"]
[tool.poetry.dependencies]
python = ">=3.9,<4"
aws-embedded-metrics = "^3.3.0"
boto3 = "^1.24.80"
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.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pre-commit = "^3.7.1"
requests-mock = "^1.10.0"
ruff = "^0.11.7"
[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
]