-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 1002 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 1002 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ninetoothed"
version = "0.25.0"
authors = [{ name = "Jiacheng Huang", email = "huangjiacheng0709@outlook.com" }]
description = "A domain-specific language based on Triton but providing higher-level abstraction."
readme = "README.md"
dependencies = ["triton>=3.0.0", "sympy>=1.13.0", "numpy>=1.26.4"]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/InfiniTensor/ninetoothed"
Issues = "https://github.com/InfiniTensor/ninetoothed/issues"
[project.optional-dependencies]
debugging = ["torch>=2.4.0"]
visualization = ["matplotlib>=3.9.0", "ninetoothed[debugging]"]
all = ["ninetoothed[debugging]", "ninetoothed[visualization]"]
[tool.ruff]
src = [".", "src", "tests"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]