-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (32 loc) · 760 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (32 loc) · 760 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
[project]
name = "carrybit"
version = "0.1.0"
description = "Tiny transformers learning exact integer arithmetic"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
dependencies = [
"torch==2.10.0",
"numpy==2.5.3",
"matplotlib==3.11.2",
"pyyaml==6.0.3",
]
[project.optional-dependencies]
wandb = ["wandb"]
[dependency-groups]
dev = ["pytest==9.1.1"]
[tool.uv]
package = true
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true
[tool.uv.sources]
torch = { index = "pytorch-cu128" }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["carrybit"]
[tool.pytest.ini_options]
testpaths = ["tests"]