-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 1.51 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
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "torch-cudagraph-debug"
version = "0.1.0"
description = "CUDA Graph runtime tensor debugging utilities for PyTorch"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24",
"torch>=2.6",
]
authors = [{ name = "torch-cudagraph-debug contributors" }]
license = "Apache-2.0"
license-files = ["LICENSE"]
keywords = ["cuda", "cuda-graphs", "debugging", "pytorch", "tensor"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: C++",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Debuggers",
]
[project.urls]
Homepage = "https://github.com/buptzyb/torch-cudagraph-debug"
Source = "https://github.com/buptzyb/torch-cudagraph-debug"
Issues = "https://github.com/buptzyb/torch-cudagraph-debug/issues"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
torch_cudagraph_debug = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
markers = [
"gpu: tests that require a CUDA-enabled PyTorch runtime",
]