-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (68 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (68 loc) · 1.69 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
82
83
84
[project]
name = "exmat-ai"
version = "0.2.0"
description = "Automated Battery Material Data Extraction using Agentic AI"
authors = [
{name = "Naga Sai Teja Kolakaleti", email = "Naga.Kolakaleti@uni-bayreuth.de"}
]
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
dependencies = [
# Core ML
"torch>=2.1.0",
"torchvision>=0.16.0",
# LangGraph / LangChain
"langgraph>=0.0.40",
"langgraph-checkpoint>=0.0.6",
"langchain-ollama>=0.3.0",
"langchain-core>=0.3.0",
# LLM Client
"ollama>=0.6.1",
"pydantic>=2.0.0",
# Object Detection (Structure Detection)
"ultralytics>=8.0.0",
# Figure Panel Detection
"figpanel[full]",
# ML utilities
"huggingface-hub>=0.19.4",
"safetensors>=0.4.1",
# Image/Document processing
"Pillow>=10.1.0",
"opencv-python>=4.8.1",
"matplotlib>=3.7.0",
# Data handling
"pandas>=2.1.3",
"numpy>=1.24.3",
# Utilities
"pyyaml>=6.0.1",
"python-dotenv>=1.0.0",
"tqdm>=4.66.1",
"colorama>=0.4.6",
"loguru>=0.7.2",
"requests>=2.31.0",
# Testing
"pytest>=7.4.3",
"pytest-cov>=4.1.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/ExMat_AI"
Repository = "https://github.com/yourusername/ExMat_AI"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# CRITICAL: Define workspace explicitly to exclude DeepSeek-OCR
[tool.uv.workspace]
members = [] # No workspace members - this is a standalone project
[dependency-groups]
dev = [
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.5.0",
]
[tool.black]
line-length = 100
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 100