-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (37 loc) · 993 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
37
38
39
40
41
42
43
44
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ffpack"
version = "0.3.3"
description = "Fatigue and fracture package"
authors = [
"Dongping Zhu",
"Zhixia Ding",
"Xiaogang Huang",
]
maintainers = [
"Dongping Zhu",
"Zhixia Ding",
]
readme = "README.md"
homepage = "https://pypi.org/project/ffpack"
repository = "https://github.com/dpzhuX/ffpack"
documentation = "https://ffpack.readthedocs.io/en/latest/"
keywords = [ "fatigue", "fracture", "load", "reliability" ]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
[tool.poetry.dependencies]
python = ">=3.7,<3.12"
scipy = [
{version = ">=1.2,<1.8", python = "3.7"},
{version = "^1.8", python = ">=3.8,<3.11"}
]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]