-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (85 loc) · 2.6 KB
/
Copy pathpyproject.toml
File metadata and controls
92 lines (85 loc) · 2.6 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[tool.black]
line-length = 80 # Code length, not docstrings
[project]
name = "py_fatigue"
version = "2.1.1"
description = "Py-fatigue bundles the main functionality for performing cyclic stress (fatigue) analysis and cycle-counting."
authors = [
{name = "Pietro D'Antuono", email = "pietro.dantuono@vub.be"},
{name = "Wout Weijtjens", email = "wout.weijtjens@vub.be"}
]
classifiers=["Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Database"]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10,<3.15"
dependencies = [
"numpy>=1.24",
"plotly",
"pandas>2.2",
"numba>=0.61,<0.66; python_version < '3.14'",
"numba>=0.65,<0.66; python_version >= '3.14'",
"matplotlib",
"pydantic<3.0.0",
]
[dependency-groups]
dev = [
"gitchangelog~=3.0.4",
"pytest>=6.2.4",
"black",
"flake8~=7.1.2",
"pylint~=3.3.0",
"mypy==1.11.2",
"pyinstrument>=4.0",
"pytest-cov>=2.12",
"coverage>=6.5",
"invoke>=1.5",
"hypothesis>=6.14.0",
"notebook>=6.4",
"rich>=13.9.4",
"rich-argparse>=1.8.0",
"jsbeautifier>=1.15.4",
]
docs = [
"Sphinx>=7.0",
"myst-parser>=0.18",
"pydata-sphinx-theme>=0.11.0",
"sphinx_design>=0.3.0",
"autoclasstoc>=1.5.2",
"sphinx-autobuild<=2024.02.04",
"sphinx-copybutton>=0.5.2",
]
[project.urls]
homepage = "https://github.com/owi-lab/py_fatigue"
documentation = "https://owi-lab.github.io/py_fatigue"
"Change Log" = "https://github.com/owi-lab/py_fatigue/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/owi-lab/py_fatigue/issues"
"Organisation Homepage" = "https://www.owi-lab.be/"
[tool.pytest.ini_options]
markers = [
"success",
"error"
]
testpaths = [
"tests"
]
[build-system]
requires = ["flit_core>=3.8"]
build-backend = "flit_core.buildapi"
[tool.uv]
package = true
default-groups = ["dev", "docs"]