forked from Vinc0110/Helmi_FEM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.07 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
[project]
name = "Helmi_FEM"
dynamic = ["version"]
description = "Finite element method for solving the electromagnetic Helmholtz equation."
requires-python = ">=3.8"
license = {file = "LICENSE"}
readme = {file = "README.md", content-type = "text/markdown"}
keywords = ["Helmholtz equation", "finite-element analysis", "finite-element method"]
authors = [
{name = "Vincent R."}
]
maintainers = [
{name = "Vincent R."}
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
dependencies = [
"scikit-fem",
"meshio",
"numpy",
"scipy",
]
[project.optional-dependencies]
plot = [
"matplotlib"
]
mesh = [
"gmsh"
]
[project.urls]
homepage = "https://github.com/Vinc0110/Helmi_FEM"
repository = 'https://github.com/Vinc0110/Helmi_FEM.git'
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "helmi.__version__"}