-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (26 loc) · 851 Bytes
/
pyproject.toml
File metadata and controls
26 lines (26 loc) · 851 Bytes
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
[project]
name = "veriexciting"
version = "0.1.0"
description = "**VeriExCite** is a Python tool designed to help you verify the existence of citations in academic papers (PDF format). It extracts the bibliography section from a PDF, parses individual references, and then checks their validity against Crossref and Google Scholar databases."
readme = "README.md"
authors = [
{ name = "Yikang Wang", email = "yikang.wang.21@ucl.ac.uk" },
]
license = { text = "Apache 2.0" }
requires-python = ">=3.10"
dependencies = [
"google-genai>=1.10.0",
"pandas>=2.2.3",
"protobuf>=5.29.3",
"pydantic>=2.10.6",
"pypdf2>=3.0.1",
"requests>=2.32.3",
"scholarly>=1.7.11",
"streamlit>=1.42.0",
"tenacity>=9.0.0",
"unidecode>=1.3.8",
"rapidfuzz>=3.0.0",
"tabulate>=0.9.0",
"openpyxl>=3.1.5",
"ruff>=0.11.6",
]