-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
124 lines (110 loc) · 2.78 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bmi-wavewatch3"
description = "Fetch WaveWatch3 data."
authors = [
{email = "[email protected]"},
{name = "The CSDMS team"}
]
maintainers = [
{email = "[email protected]"},
{name = "The CSDMS team"}
]
keywords = [
"bmi",
"wavewatch",
"data",
"grib",
]
license = {file = "LICENSE.rst"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Cython",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.9"
dependencies = [
"bmipy",
"cfgrib",
"click",
"dask",
"matplotlib",
"rich-click",
"tomli",
"tqdm",
"xarray",
"ecmwflibs",
]
dynamic = ["readme", "version"]
[project.urls]
homepage = "https://github.com/csdms"
documentation = "https://github.com/csdms/bmi-wave-watch-3/blob/main/README.rst"
repository = "https://github.com/csdms/bmi-wave-watch-3"
changelog = "https://github.com/csdms/bmi-wave-watch-3/blob/main/CHANGES.rst"
[project.optional-dependencies]
dev = ["nox"]
[project.scripts]
ww3 = "bmi_wavewatch3.cli:ww3"
[tool.conda-lock]
channels = ["conda-forge", "defaults"]
platforms = ["osx-arm64", "linux-64", "osx-64", "win-64"]
[tool.setuptools.dynamic]
readme = {file = ["README.rst", "AUTHORS.rst"]}
version = {attr = "bmi_wavewatch3._version.__version__"}
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["src/bmi_wavewatch3", "tests"]
norecursedirs = [".*", "*.egg*", "build", "dist", "examples"]
addopts = """
--ignore setup.py
--tb native
--strict
--durations 16
--doctest-modules
-vvv
"""
doctest_optionflags = [
"NORMALIZE_WHITESPACE",
"IGNORE_EXCEPTION_DETAIL",
"ALLOW_UNICODE"
]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
line_length = 88
[tool.towncrier]
directory = "news"
package = "bmi_wavewatch3"
filename = "CHANGES.rst"
single_file = true
underlines = "-`^"
issue_format = "`#{issue} <https://github.com/csdms/bmi-wavewatch3/issues/{issue}>`_"
title_format = "{version} ({project_date})"
[[tool.towncrier.type]]
directory = "feature"
name = "New Features"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bug Fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "docs"
name = "Documentation Enhancements"
showcontent = true
[[tool.towncrier.type]]
directory = "misc"
name = "Other Changes and Additions"
showcontent = true