-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
96 lines (88 loc) · 2.55 KB
/
pyproject.toml
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
[project]
name = "palimpzest"
version = "0.2.0"
description = "Palimpzest is a system which enables anyone to process AI-powered analytical queries simply by defining them in a declarative language"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["relational", "optimization", "llm", "AI programming", "extraction", "tools", "document", "search", "integration"]
authors = [
{name="MIT DSG Semantic Management Lab", email="michjc@csail.mit.edu"},
]
dependencies = [
"charset-normalizer>=3.3.2",
"click>=8.1.7",
"click-aliases>=1.0.4",
"dspy-ai>=2.4.1",
"fastapi~=0.100.0",
"fuzzywuzzy>=0.18.0",
"google-generativeai==0.4.1",
"gradio>=4.20.1",
"grobid-client-python==0.0.5",
"ipython>=8.26.0",
"layoutparser>=0.3.4",
"lxml-html-clean>=0.1.1",
"modal>=0.62.198",
"ncls==0.0.68",
"necessary>=0.3.2",
"numpy>=1.23.2",
"openai>=1.0",
"openpyxl==3.1.2",
"pandas~=2.1.1",
"papermage>=0.16.0",
"pdf2image",
"pytest>=8.2.2",
"pypdf==4.3.1",
"python-Levenshtein",
"pdfplumber==0.7.4",
"pillow>=10.2.0",
"prettytable>=3.9.0",
"pyarrow>=13.0.0",
"pytest-mock>=3.14.0",
"python-Levenshtein>=0.25.1",
"pyyaml>=6.0.1",
"requests>=2.25",
"requests-html>=0.10.0",
"scikit-learn>=1.5.2",
"scipy>=1.9.0",
"setuptools>=70.1.1",
"tabulate>=0.9.0",
"tenacity>=8.2.3",
# "torch>=1.9.0",
"tqdm>=4.66.2",
"transformers>=4.11.3",
"requests-html",
# Add other dependencies as needed
]
classifiers=[
"Development Status :: 4 - Beta", # Change as appropriate
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", # Change as appropriate
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8", # Specify versions you support
# Add more classifiers as appropriate
]
[project.scripts]
pz = "cli.cli_main:main"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.package-data]
"*" = ["*.txt", "*.rst", "*.md"]
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::DeprecationWarning",
"ignore::ResourceWarning",
"ignore::UserWarning",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.urls]
homepage = "https://github.com/mitdbg/palimpzest/"
repository = "https://github.com/mitdbg/palimpzest/"
# documentation = "https://readthedocs.org"
# changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"