forked from shader-slang/slang-torch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (30 loc) · 877 Bytes
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "slangtorch"
version = "1.2.0"
dependencies = [
"torch>=1.1.0",
"hatchling>=1.11.0",
"ninja",
"filelock"
]
authors = [
{ name="Slang Development Team" },
]
description = "A package for calling Slang modules from Python and PyTorch."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/shader-slang/slang"
"Bug Tracker" = "https://github.com/shader-slang/slang-python/issues"
[tool.hatch.build]
ignore-vcs = true
include = ["slangtorch/*.py", "slangtorch/bin/*", "slangtorch/util/*.py"]
exclude = [".github/**", "tests/*.*", "build.bat", "build-package.sh", ".gitignore", "tmp/**"]