-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.09 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "nvidia-physicsnemo-cfd"
authors = [
{ name="NVIDIA PhysicsNeMo Team"},
]
description = "A library to use PhysicsNeMo models for engineering and CFD workflows"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
dependencies = [
"httpx>=0.27.0",
"numpy>=1.22.4",
"pyvista>=0.45.2",
"tqdm>=4.67.1",
"numba>=0.59.0",
"scikit-learn>=1.6.1",
"scipy>=1.15.0",
"matplotlib>=3.10.0",
"trimesh>=4.6.9",
"fast-simplification>=0.1.12",
"nvidia-physicsnemo>=1.1.1",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dynamic = ["version"]
[project.optional-dependencies]
# dependencies for GPU-accelerated functionality
gpu = [
"cupy-cuda13x>=13.6.0",
"cuml-cu13>=25.10.0",
"warp-lang>=1.7.1",
]
all = [
"nvidia-physicsnemo-cfd[gpu]",
]
[tool.setuptools.dynamic]
version = {attr = "physicsnemo.cfd.__version__"}
[tool.setuptools.packages.find]
include = ["physicsnemo.*"]