-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (89 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
96 lines (89 loc) · 2.27 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
93
94
95
96
[build-system]
requires = ["uv_build>=0.9.7"]
build-backend = "uv_build"
[project]
name = "stagpy"
version = "0.22.0"
description = "Tool for StagYY output files processing"
readme = "README.md"
authors = [
{name = "Adrien Morison", email = "adrien.morison@gmail.com"},
{name = "Martina Ulvrova"},
{name = "Stéphane Labrosse"},
]
maintainers = [
{name = "Adrien Morison", email = "adrien.morison@gmail.com"},
]
license = "Apache-2.0"
license-files = ["LICENSE"]
urls = {homepage = "https://github.com/StagPython/StagPy"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"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",
]
requires-python = ">=3.10"
dependencies = [
"f90nml>=1.5",
"h5py~=3.15",
"loam~=0.9.0",
"matplotlib~=3.10",
"numpy~=2.2",
"pandas~=2.3",
"rich>=14.2.0",
"scipy~=1.15",
]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
"ruff>=0.14.3",
"mypy>=1.18.2",
"pandas-stubs>=2.3.2.250926",
]
doc = [
"mkdocs~=1.6.1",
"mkdocs-gen-files~=0.5.0",
"mkdocs-include-markdown-plugin~=7.1.6",
"mkdocs-literate-nav~=0.6.2",
"mkdocs-material~=9.6.15",
"mkdocstrings[python]~=0.29.1",
"black~=25.1",
]
[project.scripts]
stagpy = "stagpy.__main__:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
[tool.mypy]
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = [
"f90nml.*",
"h5py.*",
"mpl_toolkits.*",
"scipy.*",
]
ignore_missing_imports = true
[tool.basedpyright]
venvPath = "."
venv = ".venv"
enableTypeIgnoreComments = true
reportAny = false
reportIgnoreCommentWithoutRule = false
reportImplicitOverride = false
reportImportCycles = false
reportMissingTypeStubs = false
reportPrivateUsage = false
reportUnknownArgumentType = false
reportUnknownLambdaType = false
reportUnknownMemberType = false
reportUnknownParameterType = false
reportUnknownVariableType = false
reportUnusedCallResult = false