forked from nvlukasz/warp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (53 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[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", "readme"]
[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", "sphinx-copybutton", "coverage[toml]"]
[tool.setuptools.packages.find]
include = ["warp*"]
[tool.setuptools.dynamic]
version = {attr = "warp.config.version"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.black]
line-length = 120
extend-exclude = '''
(
warp/native/cutlass/
| warp/thirdparty/appdirs.py
| warp/thirdparty/dlpack.py
)
'''
[tool.isort]
profile = "black"
skip_gitignore = true
[tool.coverage.run]
source = ["warp", "warp.sim", "warp.render"]
disable_warnings = ["module-not-measured", "module-not-imported", "no-data-collected", "couldnt-parse"]
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "@wp", "@warp", "if 0:", "if __name__ == .__main__.:"]
omit =["*/warp/tests/*", "*/warp/fem/*", "appdirs.py", "render_opengl.py", "build_dll.py", "config.py", "stubs.py"]