-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
55 lines (51 loc) · 1.1 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
[project]
name = "easypaper"
version = "0.2.0"
description = "AI-powered academic paper generation SDK"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"langchain>=1.0.5",
"openai>=2.7.2",
"langgraph>=0.0.26",
"jinja2>=3.1.0",
"httpx>=0.27.0",
"pymupdf>=1.26.7",
"pdf2image>=1.17.0",
"python-dotenv>=1.2.1",
"pyyaml>=6.0",
"pydantic>=2.0",
"pillow>=10.0",
"boto3>=1.42.63",
"python-multipart>=0.0.24",
]
[project.optional-dependencies]
server = [
"fastapi>=0.121.1",
"uvicorn[standard]>=0.30.0,<0.31",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-mock>=3.12.0",
"ipython>=9.7.0",
]
vlm = [
"anthropic>=0.18.0",
]
docling = [
"docling>=2.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
pythonpath = ["."]
markers = [
"integration: marks tests that need network or real services",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["easypaper", "easypaper.*", "src", "src.*"]