-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 881 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (37 loc) · 881 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "layercake"
version = "0.1.0"
description = "Modular language models via a fixed-dimension ABI bottleneck"
readme = "README.md"
license = {file = "LICENSE"}
authors = [{name = "Sam Yoder"}]
requires-python = ">=3.10"
dependencies = [
"torch>=2.0",
"numpy>=1.24",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"ruff>=0.4",
]
tokenizer = [
"sentencepiece>=0.1.99",
]
[project.urls]
Homepage = "https://github.com/Yoder23/layercake"
Issues = "https://github.com/Yoder23/layercake/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["layercake*"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]