-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (32 loc) · 945 Bytes
/
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
[tool.poetry]
name = "parallel_slab"
version = "1.0.0"
description = "Benchmark analytical solutions for testing elastic solid--fluid coupling algorithms"
authors = ["Tejaswin Parthasarathy <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/tp5uiuc/parallel_slab"
repository = "https://github.com/tp5uiuc/parallel_slab"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Physics",
]
[tool.poetry.dependencies]
python = "~3.8, <= 3.11"
numpy = "^1.22.3"
matplotlib = "^3.5.1"
scipy = "^1.8.0"
tqdm = "^4.63.0"
pandas = "^1.4.1"
PyYAML = "^6.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
pytest-cov = "^3.0.0"
black = "^22.1.0"
flake8 = "^4.0.1"
pytest-mpl = "^0.14.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"