-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (46 loc) · 1.02 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nevf"
version = "0.1.1"
authors = [
{ name="Omar A. Mures", email="omar.alvarez@udc.es" },
]
description = "A CFD neural compression library."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = [
"cfd",
"compression",
"nevf",
"sdf",
"image",
"volume",
"deep learning"
]
dependencies = [
"numpy>=2.0.0",
"torch",
"torchvision",
"lightning",
"einops",
"wandb[media]",
"matplotlib",
"pandas",
"rich",
"humanize"
]
[tool.hatch.build]
exclude = ["/datasets"]
[project.optional-dependencies]
dev = ["black"]
[project.urls]
Homepage = "https://github.com/omaralvarez/NeVF"
Issues = "https://github.com/omaralvarez/NeVF/issues"