-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (70 loc) · 2.05 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (70 loc) · 2.05 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
[project]
name = "cfa.dataops"
version = "2026.07.29.0"
description = "Data cataloging, ETL, modeling, verification, and validation for CFA"
authors = [
{ name = "Phil Rogers", email = "ap66@cdc.gov" },
{ name = "Ryan Raasch", email = "xng3@cdc.gov" },
]
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"cfa-cloudops @ git+https://github.com/CDCgov/cfa-cloudops.git",
"httpx (>=0.28.1)",
"mako (>=1.3.9)",
"duckdb (>=1.2.0)",
"tqdm (>=4.67.1)",
"pyarrow (>=19.0.1)",
"fastparquet (>=2025.12.0)",
"matplotlib (~=3.9)",
"pandas (>=2.2.3)",
"altair (>=5.5.0)",
"vl-convert-python (>=1.7.0)",
"pandera[pandas] (>=0.24.0)",
"papermill (>=2.6.0)",
"ipywidgets (>=8.1.7)",
"itables (>=2.4.4)",
"nbconvert (>=7.16.6)",
"jupyter (>=1.1.1)",
"jupyterlab>=4.5.10",
"rich (>=14.1.0)",
"pydantic (>=2.11.7)",
"faker (>=37.8.0)",
"packaging (>=26.2)",
"polars (>=1.26.0)",
"tomli (>=2.2.1)"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["cfa"]
include = [
"cfa/dataops/py.typed",
"cfa/dataops/stub_templates/*.mako",
]
[tool.hatch.metadata]
allow-direct-references = true
[project.scripts]
dataops_catalog_init = "cfa.dataops.create_catalog.command:main"
dataops_datasets = "cfa.dataops.command:get_available_data"
dataops_stages = "cfa.dataops.command:get_dataset_stages"
dataops_versions = "cfa.dataops.command:get_dataset_versions"
dataops_save = "cfa.dataops.command:save_data_locally"
dataops_catalog_stubs = "cfa.dataops.type_stubs:main"
[tool.pytest.ini_options]
addopts = "tests cfa/dataops/utils.py --doctest-modules -vv --cov=cfa --cov-report html --cov-report term"
[dependency-groups]
dev = [
"coverage-badge>=1.1.2",
"hypothesis>=6.133.0",
"ipykernel>=6.30.0",
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.16",
"mkdocstrings[python]>=0.30.0",
"mdx-truly-sane-lists>=1.3",
"pytest>=8.3.5",
"pytest-cov>=6.1.1",
"pytest-mock>=3.14.0",
"ruff>=0.9.9",
]