forked from meta-pytorch/tritonparse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
58 lines (49 loc) · 1.17 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
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools-scm>=8.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tritonparse"
dynamic = ["version"]
dependencies = ["orjson>=3.9", "rich>=13.0"]
requires-python = ">=3.10"
description = "TritonParse: A Compiler Tracer, Visualizer, and mini-Reproducer Generator for Triton Kernels"
readme = "README.md"
authors = [
{ name="Yueming Hao", email="yhao@meta.com" },
]
license = "BSD-3-Clause"
license-files = ["LICENSE*"]
[project.optional-dependencies]
triton = [
"triton>3.3.1",
]
pytorch-triton = [
"pytorch-triton>=3.4.0",
]
test = [
"coverage>=7.0.0",
]
dev = [
"ufmt==2.9.0",
"usort==1.1.0",
"ruff-api==0.2.0",
"ruff>=0.4.0",
"coverage>=7.0.0",
]
[tool.setuptools.packages.find]
include = ["tritonparse*"]
[tool.ufmt]
formatter = "ruff-api"
sorter = "usort"
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.usort]
first_party_detection = false
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[project.urls]
"Homepage" = "https://github.com/meta-pytorch/tritonparse"
[project.scripts]
tritonparseoss = "tritonparse.cli:main"