jimnoneill commited on
Commit
4f15b47
·
verified ·
1 Parent(s): 5dbd484

Upload pyproject.toml with huggingface_hub

Browse files
Files changed (1) hide show
  1. pyproject.toml +36 -0
pyproject.toml ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "pubguard"
7
+ version = "0.1.0"
8
+ description = "Multi-head publication gatekeeper for scientific PDF pipelines"
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
+ ]
15
+
16
+ dependencies = [
17
+ "numpy>=1.24",
18
+ "model2vec>=0.3.0",
19
+ "scikit-learn>=1.3",
20
+ ]
21
+
22
+ [project.optional-dependencies]
23
+ train = [
24
+ "datasets>=2.14",
25
+ "tqdm>=4.65",
26
+ ]
27
+ dev = [
28
+ "pytest>=7.0",
29
+ "ruff>=0.1",
30
+ ]
31
+
32
+ [project.scripts]
33
+ pubguard = "pubguard.cli:main"
34
+
35
+ [tool.setuptools.packages.find]
36
+ where = ["src"]