-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·51 lines (47 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
executable file
·51 lines (47 loc) · 1.06 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
[build-system]
requires = ["flit_core>=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "PINNs_testbench"
description = "A testing and teaching ground for PINNs"
readme = "README.md"
license = { file = "LICENSE.md" }
authors = [
{ name = "Micha Erkel", email = "micha.erkel@email.uni-freiburg.de" }
]
classifiers = [
"Development Status :: Beta",
"Programming Language :: Python"
]
requires-python = ">=3.10.0,<3.12.0"
dynamic = [ "version" ]
dependencies = [
"ipykernel",
"nbformat",
"ipywidgets",
"plotly",
"pydot",
"numpy",
"tensorflow",
"ray",
"pandas",
"pyarrow",
"optuna",
"hpbandster",
"deepxde"
]
[project.optional-dependencies]
test = [
"flake8",
"pytest",
"pytest-cov",
"pytest-flake8"
]
[tool.pytest.ini_options]
pythonpath = [
"."
]
[project.urls]
documentation = "https://github.com/IMTEK-Simulation/PINNs_testbench"
repository = "https://github.com/IMTEK-Simulation/PINNs_testbench"
changelog = "https://github.com/IMTEK-Simulation/PINNs_testbench/blob/main/CHANGELOG.md"