-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (38 loc) · 1.5 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "IHSetDean"
authors = [{ name = "Lim, Changbin", email = "[email protected]" }]
maintainers = [{ name = "Lim, Changbin", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Development Status :: 1 - Planning",
"Programming Language :: Python",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version", "description"]
dependencies = ["numpy", "pytest >=7", "scipy", "xarray", "matplotlib","pandas", "netCDF4"]
[project.optional-dependencies]
dev = ["flit", "black", "sphinx", "myst-nb", "sphinx_rtd_theme", "pre-commit"]
[project.urls]
documentation = "https://ihcantabria.github.io/IHSetDean/"
repository = "https://github.com/IHCantabria/IHSetDean"
changelog = "https://github.com/IHCantabria/IHSetDean/blob/main/CHANGELOG.md"
[project.scripts]
ihsetdean-tests = "IHSetDean.tests.__init__:run_tests"
[tool.pytest.ini_options]
addopts = "--durations=0 --durations-min=0.1"
testpaths = "src/tests"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"serial",
]