-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 932 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 932 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
[project]
name = "glucose-dataset"
version = "0.1.0"
description = "A project to preprocess datasets for glucose ML training"
requires-python = ">=3.12"
dependencies = [
"pandas>=2.3.2",
"polars>=1.33.1",
"pyarrow>=21.0.0",
"typer>=0.12.0",
"pyyaml>=6.0",
"eliot",
"loguru>=0.7.3",
"fastexcel>=0.18.0",
"fsspec",
"aiohttp",
"s3fs",
"requests",
"duckdb>=1.5.0",
]
[project.scripts]
glucose-process = "glucose_cli:app"
glucose-compare = "compare_checkpoints:app"
glucose-download = "download:app"
[dependency-groups]
dev = [
"jupyterlab>=4.5.2",
"pytest>=8.4.2",
]
[tool.pytest.ini_options]
pythonpath = ["."]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.hatch.build.targets.wheel]
packages = ["formats", "processing", "glucose_cli.py", "compare_checkpoints.py", "glucose_ml_preprocessor.py", "download.py"]