-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
107 lines (100 loc) · 2.86 KB
/
pyproject.toml
File metadata and controls
107 lines (100 loc) · 2.86 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
107
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "academic-refchecker"
dynamic = ["version"]
description = "A comprehensive tool for validating reference accuracy in academic papers"
readme = "README.md"
license = "MIT"
authors = [
{name = "Mark Russinovich", email = "markrussinovich@hotmail.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
requires-python = ">=3.7"
dependencies = [
"requests>=2.32.5",
"beautifulsoup4>=4.12.0",
"pypdf>=4.0.0",
"arxiv>=2.1.0",
"python-dateutil>=2.9.0.post0",
"tqdm>=4.67.0",
"colorama>=0.4.4",
"fuzzywuzzy>=0.18.0",
"python-Levenshtein>=0.25.0",
"pandas>=2.0.0",
"numpy>=1.26.0",
"pdfplumber>=0.10.0",
"pybtex>=0.25.1",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"black>=26.3.1",
"isort>=8.0.1",
"flake8>=7.3.0",
"mypy>=1.19.1",
]
docs = [
"sphinx>=9.1.0",
"sphinx-rtd-theme>=3.1.0",
]
llm = [
"openai>=1.99.1",
"anthropic>=0.86.0",
"google-genai>=1.60.0",
]
optional = [
"lxml>=6.0.2",
"selenium>=4.41.0",
"pikepdf>=10.5.1",
"nltk>=3.9.3",
"scikit-learn>=1.8.0",
"joblib>=1.5.3",
]
vllm = [
"vllm>=0.17.1",
"huggingface_hub>=1.7.1",
"torch>=2.10.0",
]
webui = [
"fastapi>=0.135.1",
"uvicorn[standard]>=0.42.0", # Includes websockets for WebSocket support
"pydantic>=2.12.5",
"aiosqlite>=0.22.1",
"httpx>=0.28.1",
"cryptography>=46.0.5",
"pymupdf>=1.27.2",
"Pillow>=12.1.1", # For thumbnail image enhancement
"python-multipart>=0.0.22", # For FastAPI form data handling
"python-jose[cryptography]>=3.5.0", # For JWT token creation and validation (multi-user auth)
"itsdangerous>=2.1.0", # For signed cookies / CSRF protection
]
[project.urls]
Homepage = "https://github.com/markrussinovich/refchecker"
Repository = "https://github.com/markrussinovich/refchecker"
"Bug Tracker" = "https://github.com/markrussinovich/refchecker/issues"
[project.scripts]
academic-refchecker = "refchecker.core.refchecker:main"
refchecker-webui = "backend.cli:main"
[tool.setuptools.packages.find]
where = ["src", "."]
include = ["refchecker*", "backend*"]
[tool.setuptools.dynamic]
version = {attr = "refchecker.__version__.__version__"}
[tool.setuptools.package-data]
"refchecker" = ["*.txt", "*.md", "*.conf"]
"refchecker.config" = ["*.conf"]
"backend" = ["static/*", "static/**/*"]