-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (99 loc) · 2.7 KB
/
pyproject.toml
File metadata and controls
106 lines (99 loc) · 2.7 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[project]
name = "postergen"
version = "0.1.0"
description = "Aesthetic-Aware Paper-to-Poster Generation via Multi-Agent LLMs"
authors = [
{name = "Zhilin Zhang"},
{name = "Xiang Zhang"},
{name = "Jiaqi Wei"},
{name = "Yiwei Xu"},
{name = "Chenyu You"}
]
requires-python = "==3.11.*"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["poster generation", "llm", "multi-agent"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Natural Language :: English",
"Operating System :: OS Independent",
]
dependencies = [
"langgraph>=0.2.45",
"langchain>=0.3.0",
"langchain-openai>=0.2.0",
"langchain-anthropic>=0.2.0",
"langchain-google-genai>=2.0.0",
"langchain-community>=0.3.0",
"docling>=2.7.1",
"docling-core>=2.3.0",
"python-pptx>=1.0.2",
"Pillow>=10.0.0",
"opencv-python>=4.8.0",
"PyMuPDF>=1.24.0",
"pypdf>=5.0.0",
"pdfminer.six==20231228",
"pymupdf4llm>=0.0.17",
"requests>=2.32.0",
"beautifulsoup4>=4.12.0",
"urllib3>=2.0.0",
"torch==2.7.1",
"torchvision==0.22.1",
"transformers==4.52.4",
"diffusers>=0.25.0",
"accelerate>=0.30.0",
"easyocr>=1.7.0",
"numpy>=1.24.0",
"pandas>=2.0.0",
"datasets>=3.0.0",
"scikit-learn>=1.3.0",
"python-dotenv>=1.0.0",
"Jinja2>=3.1.0",
"pydantic>=2.0.0",
"tenacity>=8.0.0",
"typing-extensions>=4.8.0",
"tqdm>=4.66.0",
"imageio>=2.34.0",
"ffmpeg-python>=0.2.0",
"jupyter>=1.1.0",
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
"aiohttp>=3.9.0",
"aiofiles>=24.0.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"jsonschema>=4.20.0",
"pyyaml>=6.0.0",
"markdown>=3.5.0",
"json_repair==0.35.0",
"marker-pdf @ git+https://github.com/Hadlay-Zhang/marker.git",
"pypandoc",
"qrcode[pil]",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"python-multipart>=0.0.6"
]
[project.urls]
Homepage = "https://Y-Research-SBU.github.io/PosterGen"
Repository = "https://github.com/Y-Research-SBU/PosterGen"
Documentation = "https://Y-Research-SBU.github.io/PosterGen"
"Bug Tracker" = "https://github.com/Y-Research-SBU/PosterGen/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.black]
line-length = 88
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 88