-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 769 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 769 Bytes
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
[project]
name = "updes"
description = "Universal Partial Differential Equations Simulator"
version = "1.0.3"
readme = "docs/assets/README_PyPI.md"
authors = [
{ name = "Roussel Desmond Nzoyem", email = "desmond.ngueguin@gmail.com" }
]
keywords = [
"differentiable-programming",
"radial-basis-function",
"meshfree",
"optimisation",
"differentiable-physics",
"PDEs",
]
dependencies = [
"jax >= 0.3.4",
"lineax",
"gmsh",
"pytest",
"matplotlib>=3.4.0",
"scikit-learn",
"seaborn",
]
[project.optional-dependencies]
dev = [
"pyvista[trame]",
"quartodoc",
]
[project.urls]
Homepage = "https://github.com/ddrous/Updes"
Documentation = "https://ddrous.github.io/Updes/"
[tool.setuptools]
packages = ["updes"]