-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (39 loc) · 1.12 KB
/
setup.py
File metadata and controls
40 lines (39 loc) · 1.12 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
from setuptools import setup, find_packages
setup(
name="presentation-toolkit",
version="1.0.0",
description="Comprehensive presentation generation and evaluation toolkit",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"anthropic>=0.18.0",
"requests>=2.31.0",
"beautifulsoup4>=4.12.0",
"selenium>=4.15.0",
"playwright>=1.40.0",
"reportlab>=4.0.0",
"pillow>=10.0.0",
"opencv-python>=4.8.0",
"python-dotenv>=1.0.0",
"openai==1.88.0",
"google-genai>=0.3.0",
# Image validation dependencies
"duckdb>=0.8.0",
"aiohttp>=3.8.0",
"numpy>=1.24.0",
# PDF processing dependencies
"pdfplumber>=0.10.0",
"pillow>=10.0.0",
# Additional PDF text extraction methods
"PyMuPDF>=1.23.0",
"PyPDF2>=3.0.0",
"pdfminer.six>=20221105",
],
python_requires=">=3.8",
entry_points={
"console_scripts": [
"presentation-toolkit=main:main",
"opencanvas=opencanvas.main:main",
],
},
)