jimnoneill commited on
Commit
27e5303
·
verified ·
1 Parent(s): e462642

Upload pyproject.toml with huggingface_hub

Browse files
Files changed (1) hide show
  1. pyproject.toml +35 -0
pyproject.toml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "poster-sentry"
7
+ version = "0.1.0"
8
+ description = "Multimodal scientific poster classifier — text + visual features"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ requires-python = ">=3.10"
12
+ authors = [
13
+ {name = "Jamey O'Neill", email = "joneill@calmi2.org"},
14
+ {name = "FAIR Data Innovations Hub", email = "info@fairdataihub.org"},
15
+ ]
16
+ keywords = ["scientific-posters", "classification", "multimodal", "document-classification"]
17
+
18
+ dependencies = [
19
+ "numpy>=1.24",
20
+ "model2vec>=0.3.0",
21
+ "scikit-learn>=1.3",
22
+ "PyMuPDF>=1.23.0",
23
+ "Pillow>=10.0.0",
24
+ ]
25
+
26
+ [project.optional-dependencies]
27
+ train = [
28
+ "tqdm>=4.65",
29
+ ]
30
+
31
+ [project.scripts]
32
+ poster-sentry = "poster_sentry.cli:main"
33
+
34
+ [tool.setuptools.packages.find]
35
+ where = ["src"]