-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.15 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
48
49
50
51
[tool.poetry]
name = "damask-parse"
version = "0.2.30"
description = "Input file writers and output file readers for the crystal plasticity code DAMASK."
authors = [
"Adam Plowman <[email protected]>",
"Michael Atkinson",
"Guy Bowker",
"Gerard Capes"
]
license = "MPL 2.0"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
numpy = [
{version = "^1.24.4", python = "<3.9"},
{version = ">=1.26.4", python = ">=3.9"},
]
scipy = [
{version = "^1.10.1", python = "<3.9"},
{version = ">=1.13.0", python = ">=3.9"},
]
pandas = "^2.0.3"
h5py = "^3.11.0"
damask = "^3.0.0"
"ruamel.yaml" = "^0.18.6"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.9"
commitizen = "2.20.3"
pre-commit = "2.16.0"
ipykernel = "^6.29.5"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.2.30"
tag_format = "v$version"
version_files = [
"pyproject.toml:version",
"damask_parse/_version.py"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"