forked from NVIDIA/warp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (39 loc) · 1.15 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=61", "build", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "warp-lang"
requires-python = ">=3.7"
authors = [
{name = "NVIDIA", email = "mmacklin@nvidia.com"},
]
description = "A Python framework for high-performance simulation and graphics programming"
license = {text = "NVSCL"}
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
]
dynamic = ["version"]
[project.urls]
GitHub = "https://github.com/NVIDIA/warp"
Documentation = "https://nvidia.github.io/warp"
Changelog = "https://github.com/NVIDIA/warp/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = ["flake8", "black", "isort", "nvtx", "furo"]
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = {attr = "warp.config.version"}
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
skip_gitignore = true