-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (73 loc) · 1.67 KB
/
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
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 = ['setuptools>=40.8.0']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
[tool.setuptools.packages.find]
where = ["src"]
include = ["adtl*", "adtl.autoparser*"]
[tool.setuptools.package-data]
"adtl.autoparser" = ["config/*.toml"]
[project]
name = "adtl"
version = "0.7.0"
description = "Another data transformation language"
authors = [
{name = "Abhishek Dasgupta" },
{name = "Pip Liggins" }
]
license = {file = "LICENSE"}
requires-python = ">=3.9"
readme = "README.md"
classifiers = ["License :: OSI Approved :: MIT License"]
dependencies = [
"tomli>=2.0.0",
"pint>=0.24.4",
"requests>=2.0.0",
"fastjsonschema==2.16.*",
"tqdm",
"python-dateutil",
"more_itertools",
"pandas==2.*",
]
scripts = { adtl = "adtl:main", adtl-autoparser = "adtl.autoparser:main" }
[project.urls]
homepage = "https://adtl.readthedocs.io"
github = "https://github.com/globaldothealth/adtl"
releasenotes = "https://github.com/globaldothealth/adtl/releases"
[tool.uv]
package = true
dev-dependencies = [
"adtl[all]"
]
[project.optional-dependencies]
autoparser = [
"numpy==2.*",
"openai>=1.52.2",
"openpyxl>=3.1.5",
"pydantic>=2.9.2",
"eval_type_backport; python_version < '3.10'",
"google-generativeai>=0.8.3"
]
test = [
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"syrupy==4.*",
"responses",
"pytest-unordered",
"adtl[parquet, autoparser]"
]
docs = [
"sphinx==8.*; python_version >= '3.10'",
"sphinx-book-theme",
"sphinxcontrib-mermaid",
"myst-nb==1.*",
"adtl[autoparser]"
]
parquet = [
"polars"
]
all = [
"adtl[test,docs]"
]
[tool.coverage.run]
omit = ["tests/*", "src/adtl/autoparser/toml_writer.py"]