-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.98 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (58 loc) · 1.98 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "perla-extract"
version = "0.0.6"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Sherjeel Shabih", email = "sherjeel.shabih@hu-berlin.de" },
{ name = "Pepe Marquez", email = "jose.marquez@physik.hu-berlin.de" },
{ name = "Kevin Jablonka", email = "mail@kjablonka.com" },
{ name = "Sharat Patil", email = "sharat.patil@physik.hu-berlin.de" },
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"pydantic",
"litellm>=1.77.7",
"diskcache",
"pymupdf",
"deepdiff>=8.1.0",
"munkres",
"pint",
"numpy",
"levenshtein",
"instructor",
"fire",
"flatdict>=4.1.0",
"mip",
"loguru",
"pandas",
"feedparser",
"pdf2doi>=1.7"
]
[project.optional-dependencies]
dev = ["jupyter", "docformatter", "pytest", "ruff", "bump-my-version"]
nougat = ["nougat"]
marker = ["marker-pdf"]
pymupdf = ['pymupdf']
cache = ["redis"]
docs = [
"mkdocs-material>=9.4.0",
"mkdocstrings[python]>=0.22.0",
"mkdocs-gen-files>=0.5.0",
"mkdocs-literate-nav>=0.6.0",
"fire"
]
[project.scripts]
perla-extract = "perla_extract.pipeline:main_cli"
[tool.setuptools.package-data]
"perla_extract" = ["allowed_journals.csv", "data/extractions/claude-opus-4-1-20250805/*.json", "data/extractions/claude-opus-4-20250514/*.json", "data/extractions/claude-sonnet-4-20250514/*.json", "data/extractions/gpt-4.1-2025-04-14/*.json", "data/extractions/gpt-4o-2024-08-06/*.json", "data/extractions/gpt-5-2025-08-07/*.json", "data/extractions/gpt-5-mini-2025-08-07/*.json", "data/extractions/humans/*/*.json", "data/ground_truth/dev/*.json", "data/ground_truth/test/*.json", "papersbot/feeds.txt"]