-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (49 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
59 lines (49 loc) · 1.09 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
[project]
name = "imgcount"
version = "0.2.0"
description = "Image generation and analysis platform for evaluating generative numeracy"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
dependencies = [
# Core
"python-dotenv>=1.0.0",
"httpx>=0.27.0",
"aiofiles>=23.0.0",
"pydantic>=2.0.0",
# API Clients
"anthropic>=0.40.0",
"openai>=1.50.0",
"google-genai>=1.0.0",
"fal-client>=0.5.0",
# Image Processing & Metrics
"pillow>=10.0.0",
"numpy>=1.26.0",
"scipy>=1.11.0",
"scikit-learn>=1.3.0",
"statsmodels>=0.14.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"ruff>=0.1.0",
"mypy>=1.5.0",
]
tracking = [
"wandb>=0.16.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"ignore:.*_UnionGenericAlias.*:DeprecationWarning:google.genai.types",
]