-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 791 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 791 Bytes
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
[build-system]
requires = ["setuptools>=61", "setuptools-scm>=8"]
[project]
name = "llm_knowledge"
version = "0.1.2"
authors = [
{ name="Dustin Wright", email="dw@di.ku.dk" },
]
description = "Tools to extract, visualize, and quantify latent knowledge in large language models"
readme = "README_pypi.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dynamic = ["dependencies", "optional-dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.package-data]
prompts = ["*.txt"]
[project.urls]
Homepage = "https://github.com/dwright37/llm-knowledge"
Issues = "https://github.com/dwright37/llm-knowledge/issues"