-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (89 loc) · 2.52 KB
/
Copy pathpyproject.toml
File metadata and controls
104 lines (89 loc) · 2.52 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[project]
name = "DataCooker"
version = "0.1.0"
description = "Core recipe engine for declarative data processing pipelines"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Sanggeun Park", email = "psk6950@snu.ac.kr" }]
keywords = ["workflow", "dag", "data-processing", "pipeline", "recipe"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
]
[project.optional-dependencies]
config = [
"omegaconf>=2.3.0,<3",
]
cli = [
"click>=8.1.0,<9",
"omegaconf>=2.3.0,<3",
]
lmdb = [
"joblib>=1.4.0,<2",
"lmdb>=1.6.0,<2",
]
parallel = [
"joblib>=1.4.0,<2",
]
[project.scripts]
datacooker-lmdb = "datacooker.cli.lmdb:main"
datacooker-workflow = "datacooker.cli.workflow:main"
[project.urls]
Homepage = "https://github.com/CSSB-SNU/DataCooker"
Repository = "https://github.com/CSSB-SNU/DataCooker"
Issues = "https://github.com/CSSB-SNU/DataCooker/issues"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"F722", # Incompatible with jaxtyping
"D100", # Missing docstring in public module
"D104", # Missing docstring in public package
"C901",
"COM812", # Formatter-compatible trailing comma handling
"N806",
"E501",
"ANN401", # Public API accepts arbitrary workflow payloads
"FBT001", # Compatibility wrappers expose simple boolean flags
"FBT002",
"PLR0913", # Public compatibility APIs are intentionally wide
"TC001", # Postponed evaluation makes runtime imports acceptable here
"TC003",
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.per-file-ignores]
"tests/*.py" = ["D", "PT009", "PT027"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
datacooker = { path = ".", editable = true }
[tool.pixi.dependencies]
python = "~=3.10"
ruff = ">=0.11.6,<0.12"
pytest = ">=8.4.1,<9"
ipykernel = ">=6.30.1,<7"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = [
"src/datacooker",
]