-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
65 lines (58 loc) · 1.47 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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "ministag"
version = "0.1.0"
description = "2D infinite-Prandtl convection code"
readme = "README.md"
authors = [
{name = "Adrien Morison", email = "adrien.morison@gmail.com"},
{name = "Stéphane Labrosse"},
]
maintainers = [
{name = "Adrien Morison", email = "adrien.morison@gmail.com"},
]
license = {file = "LICENSE"}
urls = {homepage = "https://github.com/StagPython/ministag"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dependencies = [
"h5py~=3.11",
"loam~=0.8.0",
"matplotlib~=3.9",
"numpy~=2.0",
"scipy~=1.13",
]
[project.scripts]
ministag = "ministag.__main__:main"
[tool.hatch.build.targets.sdist]
include = ["ministag"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
[tool.mypy]
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = [
"h5py.*",
"scipy.*",
]
ignore_missing_imports = true
[tool.uv]
dev-dependencies = [
"mypy>=1.11.2",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"ruff>=0.6.5",
"types-toml>=0.10.8.20240310",
]