-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) Β· 1.31 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) Β· 1.31 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
[project]
name = "resophy"
version = "0.1.0"
description = "Resophy: A fully open-source, modern paper reading and management platform for Vibe Coding"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "CC BY-NC 4.0"}
authors = [
{name = "Resophy Team"}
]
keywords = ["paper", "research", "pdf", "arxiv", "ai", "translation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"Flask==2.3.3",
"Werkzeug==2.3.7",
"PyPDF2==3.0.1",
"PyMuPDF==1.25.2",
"arxiv>=2.3.0",
"openai>=1.70.0,<2",
"requests>=2.32.3",
"rdflib==7.5.0",
"Pillow==11.3.0",
"mineru==2.5.3",
"BabelDOC==0.5.13",
"mineru_vl_utils==0.1.16"
]
[project.optional-dependencies]
local = []
server = [
"mineru[vlm]==2.5.3",
"mineru[pipeline]==2.5.3",
"mineru[api]==2.5.3",
"mineru[vllm]==2.5.3",
"huggingface-hub>=0.20.0",
"modelscope>=1.17.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["core", "routes", "tools"]