-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 872 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (39 loc) · 872 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
45
46
47
[project]
name = "ml-reentry-torch"
version = "0.1.0"
description = "PyTorch internals: dispatch, torch.compile, custom operators"
requires-python = ">=3.11"
dependencies = [
"torch>=2.6",
"triton",
"numpy",
"matplotlib",
"seaborn",
]
[project.optional-dependencies]
dev = [
"pytest",
"ipython",
"pre-commit",
"ruff",
"pyright",
]
[project.scripts]
tracer = "tools.tracer.__main__:main"
canal = "tools.canal.__main__:main"
canal-view = "tools.canal.view.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["tools", "shared", "exp"]
[tool.pytest.ini_options]
python_files = ["test_*.py"]
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.pyright]
pythonVersion = "3.12"
venvPath = "/opt"
venv = "venv"