-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 1.02 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
[project]
name = "kpub"
version = "0.1.0"
description = "enables an institution to keep track of it's scientific publications in an easy way."
authors = [
{name = "Tyler Tucker",email = "tylertucker202@gmail.com"}
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"pyyaml>=6.0",
"requests>=2.32.5",
"jinja2",
"textract-py3",
"matplotlib",
"pymongo==3.12.3",
"bokeh",
"openpyxl",
"pandas>=3.0.1",
]
[project.optional-dependencies]
classifier = [
"PyMuPDF>=1.25.0",
"rank-bm25>=0.2.2",
"sentence-transformers>=5.2.3",
"ollama>=0.5.0"
]
[tool.setuptools]
packages = [
"kpub",
"kpub.classifier",
"kpub.classifier.data",
"kpub.classifier.models",
"kpub.classifier.scripts",
]
[tool.setuptools.package-dir]
"kpub" = "src"
[tool.setuptools.package-data]
kpub = ["config/*.yaml", "templates/*.md", "classifier/config/*.yaml", "classifier/models/prompts/*"]
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"