File size: 687 Bytes
4f15b47 |
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 |
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pubguard"
version = "0.1.0"
description = "Multi-head publication gatekeeper for scientific PDF pipelines"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Jamey O'Neill", email = "joneill@calmi2.org"},
]
dependencies = [
"numpy>=1.24",
"model2vec>=0.3.0",
"scikit-learn>=1.3",
]
[project.optional-dependencies]
train = [
"datasets>=2.14",
"tqdm>=4.65",
]
dev = [
"pytest>=7.0",
"ruff>=0.1",
]
[project.scripts]
pubguard = "pubguard.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
|