poster-sentry / pyproject.toml
jimnoneill's picture
Upload pyproject.toml with huggingface_hub
27e5303 verified
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "poster-sentry"
version = "0.1.0"
description = "Multimodal scientific poster classifier — text + visual features"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Jamey O'Neill", email = "joneill@calmi2.org"},
{name = "FAIR Data Innovations Hub", email = "info@fairdataihub.org"},
]
keywords = ["scientific-posters", "classification", "multimodal", "document-classification"]
dependencies = [
"numpy>=1.24",
"model2vec>=0.3.0",
"scikit-learn>=1.3",
"PyMuPDF>=1.23.0",
"Pillow>=10.0.0",
]
[project.optional-dependencies]
train = [
"tqdm>=4.65",
]
[project.scripts]
poster-sentry = "poster_sentry.cli:main"
[tool.setuptools.packages.find]
where = ["src"]