-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 953 Bytes
/
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
[project]
name = "paraffin"
version = "0.3.5"
description = "Parallel execution of DVC stages"
authors = [
{ name = "Fabian Zills", email = "[email protected]" },
]
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"dvc>=3.59.0",
"fastapi[standard]>=0.115.7",
"sqlmodel>=0.0.22",
"typer>=0.13",
]
[project.scripts]
paraffin = 'paraffin.cli:app'
[project.urls]
Repository = "https://github.com/zincware/paraffin"
Releases = "https://github.com/zincware/paraffin/releases"
[dependency-groups]
dev = [
"coverage>=7.6.10",
"pytest>=8.3.4",
"zntrack>=0.8.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"/app",
]
[tool.hatch.build.targets.wheel]
artifacts = [
"paraffin/static/**",
]
[tool.ruff.lint]
select = ["E", "F", "N", "C", "I"]
extend-ignore = [
"D213", "D203", "N802", "N801"
]