-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
45 lines (42 loc) · 1.04 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61",
"wheel",
]
[project]
name = "chunk-attn"
version = "1.0rc1"
description = "Chunk Attention with Prefix-Aware KV Cache and Two-Phase Partition"
readme = "README.md"
authors = [
{ name = "Lu Ye", email = "luye@microsoft.com" },
{ name = "Ze Tao", email = "zetao@microsoft.com" },
{ name = "Yong Huang", email = "yohuan@microsoft.com" },
{ name = "Yang Li", email = "yali2@microsoft.com" }]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
]
optional-dependencies.docs = [
"flask>=2.0.2",
"furo>=2022.12.7",
"sphinx>=6.1.3",
"sphinx-autodoc-typehints!=1.23.4,>=1.22",
]
optional-dependencies.testing = [
"pytest>=7.2.2",
'model-perf',
"mypy",
]
[project.urls]
"Homepage" = "https://www.github.com/"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = ["src"]