-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (52 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
60 lines (52 loc) · 1.58 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
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=68.0", "wheel", "torch>=2.2.0", "ninja"]
build-backend = "setuptools.build_meta"
[project]
name = "tide-inference"
version = "0.2.1"
description = "Token-Informed Depth Execution — dynamic per-token layer skipping for transformer inference"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{name = "RightNow AI"},
]
keywords = ["llm", "inference", "early-exit", "transformer", "optimization", "cuda", "pytorch"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: C++",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"torch>=2.2.0",
"transformers>=4.40.0",
"datasets",
"numpy",
"pyyaml",
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
bench = ["vllm>=0.7.0", "flash-attn>=2.7.0"]
[project.urls]
Homepage = "https://www.rightnowai.co/"
Repository = "https://github.com/RightNow-AI/TIDE"
Issues = "https://github.com/RightNow-AI/TIDE/issues"
[tool.setuptools.package-dir]
TIDE = "python/TIDE"
[tool.setuptools.packages.find]
where = ["python"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]