-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (71 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (71 loc) · 1.88 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[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.12"
license = "Apache-2.0"
dependencies = [
"httpx>=0.27.0",
"hydra-core>=1.3.0",
"pyyaml>=6.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",
"torch-geometric>=2.5.0",
"matplotlib>=3.10.0",
"trimesh>=4.6.9",
"fast-simplification>=0.1.12",
"nvidia-physicsnemo>=2.1.1",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
]
# Hugging Face Hub + fsspec for ``hf://`` / ``s3://`` model packages (see evaluation.assets.Package)
evaluation-hf = [
"huggingface_hub>=0.23.0",
"fsspec>=2024.1.0",
"filelock>=3.13.0",
]
# dependencies for GPU-accelerated functionality
gpu = [
"cupy-cuda13x>=13.6.0",
"cuml-cu13>=25.10.0",
"warp-lang>=1.13.0",
]
# gpytorch for the closed-form UQ wrappers, whose GP head
# (physicsnemo.experimental.uq.FieldVariationalGPHead) requires it at import time.
# Every other evaluation wrapper, and the sampling UQ path, install without it.
evaluation-uq = [
"gpytorch>=1.11",
]
all = [
"nvidia-physicsnemo-cfd[dev,gpu,evaluation-hf,evaluation-uq]",
]
docs = [
"sphinx>=6.0.0",
"myst-parser>=0.18.0",
"sphinx-autodoc-typehints>=1.24.0",
"sphinx-design",
"sphinx-togglebutton>=0.3.0",
"sphinx-favicon>=1.0.1",
"nvidia-sphinx-theme",
]
[tool.setuptools.dynamic]
version = {attr = "physicsnemo.cfd.__version__"}
[tool.setuptools.packages.find]
include = ["physicsnemo.*"]