-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 878 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 878 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lizzy"
version = "0.1.0"
authors = [
{name = "Simone Bancora", email = "simone.bancora@gmail.com" },
]
maintainers = [
{name = "Simone Bancora", email = "simone.bancora@gmail.com" },
]
requires-python = ">=3.10"
dependencies = [
"meshio==5.3.5",
"numpy",
"scipy",
"h5py",
]
description = "A filling simulation solver for Liquid Composite Molding (LCM) processes"
readme = "README.md"
keywords = ["rtm", "resin infusion", "finite elements", "solver", "simulation", "lcm"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["lizzy*"]
[project.optional-dependencies]
dev = ["pytest"]
petsc = ["petsc", "petsc4py"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--verbose"
[project.scripts]
lizzy = "lizzy.cli.main:main"