-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
57 lines (53 loc) · 1.35 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "EasyFEA"
version = "1.2.6"
description = "User-friendly Python library that simplifies finite element analysis."
authors = [
{name = "Matthieu Noel", email = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.9"
keywords = ["finite-element-analysis", "phase-field", "python", "easy", "fem"]
license = {file = "LICENSE.txt"}
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy",
"gmsh>=4.12",
"scipy",
"matplotlib",
"pyvista",
"numba",
"pandas",
"imageio",
"imageio[ffmpeg]",
]
[project.optional-dependencies]
fast = [
"pypardiso",
"petsc",
"petsc4py",
]
cv = [
"opencv-python"
]
[project.urls]
"Source Code" = "https://github.com/matnoel/EasyFEA"
[tool.setuptools.packages.find]
include = [
"EasyFEA",
"EasyFEA.*"
]