-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (50 loc) · 1.34 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (50 loc) · 1.34 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "doc2graph"
version = "0.2.1"
description = "Doc2Graph transforms documents into graphs and exploit a GNN to solve several tasks. "
readme = "README.md"
requires-python = ">=3.9,<3.12"
dependencies = [
# Core ML/DL frameworks
"torch>=2.6.0,<2.8.0",
"torchvision>=0.20.0,<0.22.0",
"dgl>=1.1.3,<2.0.0",
# Computer Vision
"opencv-python>=4.8.0",
"pillow>=10.3.0",
"easyocr>=1.7.0",
"pytesseract>=0.3.10",
"segmentation-models-pytorch>=0.2.0,<0.3.0",
# Data processing
"numpy>=1.24.0,<2.0.0",
"pandas>=2.0.0",
"scikit-learn>=1.3.0",
"scipy>=1.10.0",
# NLP
"spacy>=3.6.0,<4.0.0",
"fasttext>=0.9.2",
# Visualization
"matplotlib>=3.7.0",
"tensorboard>=2.13.0",
# Utilities
"pyyaml>=6.0",
"itsdangerous>=2.0.1",
"wget>=3.2",
"requests>=2.28.0",
"tqdm>=4.64.0",
"pydantic>=1.10.13,<3.0.0",
# Development
"pytest>=7.4.0",
"ruff>=0.1.0",
"en-core-web-lg",
"jupyter>=1.1.1",
"pip-audit>=2.7.3",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["doc2graph*"]
[tool.uv.sources]
en-core-web-lg = { url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.8.0/en_core_web_lg-3.8.0-py3-none-any.whl" }