-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.24 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
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fem"
version = "1.2.0"
description = "A Python library for structural analysis using the Finite Element Method"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Patricio Palacios B.", email = "pxpalacios@miuandes.cl" },
{ name = "Nicolas Mora Bowen", email = "nmora@miuandes.cl" }
]
keywords = ["FEM", "finite element", "structural analysis", "civil engineering"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering"
]
requires-python = ">=3.8"
dependencies = [
"numpy",
"scipy",
"sympy",
"matplotlib",
"gmsh",
"h5py",
"ipywidgets",
"jupyter"
]
[project.optional-dependencies]
dev = ["pytest", "black", "flake8"]
[project.urls]
Homepage = "https://github.com/ppalacios92/FEM"
Repository = "https://github.com/ppalacios92/FEM"
[tool.setuptools]
package-dir = {"" = "src"}
packages = [
"fem",
"fem.core",
"fem.elements",
"fem.model",
"fem.sections",
"fem.utils",
"fem.validation",
]
[tool.setuptools.package-data]
fem = ["py.typed"]