-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 1.03 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
[project]
name = "keys-vals"
dynamic = ["version"]
description = "Efficient Inference, Fine-tuning and Key-Value Caching on top of LitGPT"
authors = [
{ name = "Matthias Seeger", email = "mseeger@gmail.com" },
]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
]
requires-python = ">=3.8"
urls.homepage = "https://github.com/awslabs/keys_values"
scripts.keys_values = "keys_values.__main__:main"
dependencies = [
"filelock",
"black>=26.3.1",
"flake8",
"hypothesis",
]
[project.optional-dependencies]
cuda = ["flashinfer-python"]
trl = ["trl>=1.0.0"]
[tool.setuptools.packages.find]
include = [
"keys_values",
"keys_values.*",
]
exclude = []
[tool.setuptools.dynamic]
version = {attr = "keys_values.read_version"}