-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (72 loc) · 1.9 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (72 loc) · 1.9 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
[build-system]
requires = ["hatchling>=1.25.0"]
build-backend = "hatchling.build"
[project]
name = "sdmxflow"
version = "0.1.1"
description = "Download SDMX datasets into a reproducible, append-only on-disk layout for data warehouse refresh workflows."
readme = "README.md"
requires-python = ">=3.11,<3.13"
license = { file = "LICENSE.md" }
authors = [{ name = "Henry Zehe" }]
keywords = ["sdmx", "eurostat", "etl", "elt", "data-warehouse", "data-engineering", "metadata"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"pyarrow>=23.0.1",
"pydantic>=2.12.5",
"requests>=2.31.0",
"sdmx1>=2.24.0,<2.25.1",
]
[project.urls]
Homepage = "https://github.com/knifflig/sdmxflow"
Repository = "https://github.com/knifflig/sdmxflow"
Issues = "https://github.com/knifflig/sdmxflow/issues"
[project.optional-dependencies]
dev = [
"zensical",
"ruff",
"pytest",
"pytest-cov",
"build",
"twine",
]
[dependency-groups]
dev = [
"zensical",
"ruff",
"pytest",
"pytest-cov",
"build",
"twine",
]
[tool.hatch.build.targets.wheel]
packages = ["sdmxflow"]
[tool.hatch.build.targets.sdist]
include = [
"/sdmxflow",
"/README.md",
"/LICENSE.md",
"/pyproject.toml",
]
[tool.uv.sources]
sdmxflow = { path = "sdmxflow", editable = true }
[tool.coverage.run]
source = ["sdmxflow"]
branch = false
[tool.coverage.report]
show_missing = true
skip_covered = true
precision = 0