forked from hainegroup/oceanspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1.12 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
[project]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering"
]
dependencies = [
"dask",
"xarray >= 0.14.1",
"xgcm >= 0.2.0",
"shapely"
]
description = "A Python package to facilitate ocean model data analysis and visualization."
dynamic = ["version"]
license = {file = "LICENSE"}
name = "oceanspy"
readme = "README.rst"
requires-python = ">=3.9"
[tool.coverage.run]
branch = true
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "-v --cov"
testpaths = ["oceanspy/tests"]
[tool.setuptools]
packages = ["oceanspy"]
[tool.setuptools_scm]
write_to = "oceanspy/version.py"
write_to_template = '''
# Do not change! Do not track in version control!
__version__ = "{version}"
'''