-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.19 KB
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
[project]
name = "collab-dev"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{ name = "Amna Anwar", email = "amna@pullflow.com" },
{ name = "Alissa Vuillier", email = "alissa@pullflow.com" },
{ name = "Zak Mandhro", email = "zak@pullflow.com" },
]
dependencies = [
"flask>=3.1.0",
"pandas>=2.2.3",
"numpy>=1.26.0",
"plotly>=5.18.0",
"dotenv>=0.9.9",
"requests>=2.31.0",
]
requires-python = "==3.12.*"
readme = "README.md"
license = { text = "MIT" }
[tool.pdm]
distribution = false
[tool.pdm.scripts]
serve = "python src/collab_dev/app.py"
collect = "python src/collab_dev/collect.py"
lint = "ruff check src/"
format = "ruff format src/"
lint-fix = "ruff check --fix src/"
[tool.pdm.dev-dependencies]
dev = ["ruff>=0.11.2"]
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "B"]
ignore = []
# Per-file ignores for visualization-related files with long template strings
[tool.ruff.lint.per-file-ignores]
"src/collab_dev/charts/pr_sankey/__init__.py" = ["E501"]
"src/collab_dev/charts/review_coverage/__init__.py" = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"