-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.26 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
49
50
51
52
[build-system]
requires = [
"setuptools>=77.0.0", # first release that bumps metadata to 2.4
"wheel",
"build"
]
build-backend = "setuptools.build_meta"
[project]
name = "pingkit"
version = "0.5.3"
description = "LLM classification toolkit"
readme = { file = "README.pypi.md", content-type = "text/markdown" }
requires-python = ">=3.8"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Jacob Berkowitz", email = "jacob.berkowitz2@cshs.org" }]
dependencies = [
"torch>=2.2",
"torchvision",
"transformers>=4.40",
"pandas>=1.1",
"numpy>=1.20",
"scikit-learn>=1.0",
"joblib>=1.2",
"tqdm>=4.60",
"matplotlib>=3.4",
"rich>=13.0",
"typer[all]>=0.9",
]
[project.scripts]
pingkit = "pingkit.cli:app"
# plug = "pingkit.cli:app"
# ──────────────────────────
# Setuptools configuration
# ──────────────────────────
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = false
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
pingkit = ["*.json", "*.txt", "*.yaml"]
[tool.setuptools.exclude-package-data] # keep notebooks & .ipynb out of wheels
"*" = ["*.ipynb", "notebooks/*", "examples/*"]