-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.41 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
[build-system]
requires = [
"setuptools>=64",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "nnpf"
version = "1.0.2"
description = "Neural Network for Phase-Field models"
readme = "README.md"
authors = [
{name = "Roland Denis", email = "[email protected]"},
{name = "Garry Terii", email = "[email protected]"},
]
maintainers = [{name = "Roland Denis", email = "[email protected]"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["phase field", "mean curvature", "neural network"]
dependencies = [
"numpy < 2",
"matplotlib",
"torch >= 1.10.0, <= 1.12.1",
"torchvision >= 0.8.1",
"torchmetrics < 0.8.0", # 0.8.0 is incompatible with lightning < 1.5.0
"pytorch-lightning == 1.4.5",
"tensorboard < 2.12",
"tqdm",
"imageio",
"imageio-ffmpeg",
"torchinfo",
"pytest",
]
requires-python = ">=3.8"
[project.urls]
homepage = "https://github.com/PhaseFieldICJ/nnpf"
repository = "https://github.com/PhaseFieldICJ/nnpf"
"Bug Tracker" = "https://github.com/PhaseFieldICJ/nnpf/issues"
[project.scripts]
nnpf = "nnpf.cmd:actions"