Spaces:
Sleeping
Sleeping
File size: 1,696 Bytes
66c9c8a | 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 | [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 = {}
[tool.setuptools.dynamic]
version = {attr = "warp.config.version"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.black]
line-length = 120
[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"]
|