forked from AHartmaier/pyLabFEA
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.1 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pylabfea"
version = '4.4.2'
description = "Python Laboratory for Finite Element Analysis"
authors = [
{ name = "Alexander Hartmaier", email = "alexander.hartmaier@rub.de" },
{ name = "Ronak Shoghi" },
{ name = "Jan Schmidt" }
]
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = [ "LICENSE" ]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy",
"matplotlib",
"scipy",
"scikit-learn",
"ipympl"
]
[project.optional-dependencies]
dev = ["pytest", "black", "build", "twine"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[project.urls]
Homepage = "https://github.com/AHartmaier/pyLabFEA"