-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
41 lines (36 loc) · 1.11 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "irrevolutions"
version = "0.1.0"
description = "A Python package for solving nonlinear and nonconvex evolutionary problems using a general energetic notion of stability and dolfinx."
authors = [
{name = "Andrés A León Baldelli", email = "[email protected]"}
]
dependencies = [
"pandas>=1.2",
"sympy>=1.8",
"pytest>=6.0",
"matplotlib>=3.4",
"gmsh>=4.11.0",
"PyYAML>=6.0.1",
"scipy>=1.12.0",
"pyvista>=0.43",
"numpy<2", # Pin NumPy to this version
"numba>=0.60.0"
]
readme = "README.md"
requires-python = ">=3.9"
license = {text = "GNU Lesser General Public License v3.0"}
[project.urls]
homepage = "https://github.com/kumiori3/irrevolutions"
repository = "https://github.com/kumiori3/irrevolutions"
[tool.setuptools.packages.find]
where = ["src"]
include = ["irrevolutions*"]
[project.scripts]
irrevolutions = "irrevolutions:main"
# Optional include files like configuration, license, etc.
[tool.setuptools.package-data]
irrevolutions = ["models/default_parameters.yml"]