-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 2.03 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
[project]
name = "data-designer-engine"
dynamic = ["version", "dependencies"]
description = "Generation engine for DataDesigner synthetic data generation"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[build-system]
requires = ["hatchling", "uv-dynamic-versioning>=0.7.0"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.uv-dynamic-versioning]
vcs = "git"
style = "pep440"
bump = true
[tool.hatch.metadata.hooks.uv-dynamic-versioning]
dependencies = [
"anyascii>=0.3.3,<1",
"chardet>=3.0.2,<6", # Pulled in by sqlfluff
"cryptography>=46.0.7,<47", # 46.0.7 fixes CVE-2026-39892 pulled in by mcp
"data-designer-config=={{ version }}",
"duckdb>=1.5.0,<2",
"faker>=20.1.0,<21",
"fsspec>=2025.3.0,<2026",
"httpx>=0.27.2,<1",
"httpx-retries>=0.4.2,<1",
"huggingface-hub>=1.0.1,<2",
"json-repair>=0.48.0,<1",
"jsonpath-rust-bindings>=1.0,<2",
"jsonschema>=4.0.0,<5",
"lxml>=6.1.0,<7",
"marko>=2.1.2,<3",
"mcp>=1.26.0,<2",
"networkx>=3.0,<4",
"numpy>=1.23.5,<3",
"python-multipart>=0.0.27,<1", # 0.0.27 fixes security advisory pulled in by mcp
"ruff>=0.14.10,<1",
"scipy>=1.11.0,<2",
"sqlfluff>=3.2.0,<4",
"tiktoken>=0.8.0,<1",
]
[tool.hatch.build.targets.wheel]
packages = ["src/data_designer"]
[tool.ruff]
extend = "../../pyproject.toml"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_default_fixture_loop_scope = "session"
env = ["DISABLE_DATA_DESIGNER_PLUGINS=true"]
[tool.uv]
package = true
[tool.uv.sources]
data-designer-config = { workspace = true }