-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (50 loc) · 1.42 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "casecrawler"
version = "0.1.0"
description = "Synthetic healthcare data generation engine for AI training and evaluation"
license = "Apache-2.0"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.27",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"pyyaml>=6.0",
"click>=8.0",
"chromadb>=0.5",
"sentence-transformers>=3.0",
"fastapi>=0.115",
"uvicorn>=0.30",
"python-dotenv>=1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-httpx>=0.30",
"httpx[http2]",
"ruff>=0.6",
]
anthropic = ["anthropic>=0.40"]
openai = ["openai>=1.50"]
all-llm = ["anthropic>=0.40", "openai>=1.50"]
hf = ["huggingface_hub>=0.28", "datasets>=3.0", "transformers>=4.45"]
imaging = ["diffusers>=0.31", "torch>=2.4", "pillow>=10.0", "open-clip-torch>=2.26"]
parquet = ["pyarrow>=17.0", "pandas>=2.2"]
synthea = []
[project.scripts]
casecrawler = "casecrawler.cli:cli"
[tool.hatch.build.targets.wheel]
packages = ["src/casecrawler"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"slow: tests that are useful locally but too slow for every pull request",
"optional_backend: tests requiring optional external model packages or backend adapters",
"network: tests requiring live network access",
]
[tool.ruff]
target-version = "py312"