-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
72 lines (63 loc) · 1.88 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=65", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "PINNICLE"
dynamic = ["version"]
description = "A library for solving ice sheet modeling problems using a unified framework with Physics Informed Neural Networks"
readme = "README.md"
license = {file = "LICENSE.txt"}
authors = [
{ name = "Cheng Gong", email = "[email protected]" },
]
requires-python = ">=3.9"
keywords = [
"Ice sheet modeling",
"Numerical method",
"Deep learning",
"Physics-informed neural networks"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy",
"scipy",
"scikit-learn",
"tensorflow>=2.11.0",
"tensorflow-probability[tf]>=0.19.0 ",
"matplotlib",
"pandas",
"mat73",
"deepxde",
]
[project.urls]
Homepage = "https://github.com/enigne/PINNICLE"
Documentation = "https://pinnicle.readthedocs.io"
"Bug Tracker" = "https://github.com/enigne/PINNICLE/issues"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["DATA", "Models", "docs*", "examples*"]
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_also = [
# 1. Comments to turn coverage on and off:
"no cover: start(?s:.)*?no cover: stop",
# Don't complain about missing debug-only code:
"def __repr__",
"if self\\.debug",
# Don't complain if tests don't hit defensive assertion code:
"raise AssertionError",
"raise NotImplementedError",
# Don't complain about abstract methods, they aren't run:
"@(abc\\.)?abstractmethod",
# Don't complain pytest.mark.skip:
"@pytest.mark.skip",
]
ignore_errors = true