-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 955 Bytes
/
pyproject.toml
File metadata and controls
45 lines (37 loc) · 955 Bytes
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
[build-system]
requires = [
"setuptools >= 35.0.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "emsarray_smc"
version = "0.5.0"
description = "Support for spherical multiple-cell geometry in emsarray"
authors = [
{name = "Coastal Environmental Modelling team, Oceans and Atmosphere, CSIRO", email = "coasts@csiro.au"},
]
license = "BSD-3-Clause"
license-files = ["LICENCE"]
dependencies = [
"emsarray >= 0.8.0",
]
dynamic = ["readme"]
[project.optional-dependencies]
testing = [
"pytest"
]
[project.urls]
Source = "https://github.com/csiro-coasts/emsarray-smc/"
[project.entry-points."emsarray.conventions"]
SMC = "emsarray_smc:SMC"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"error",
"ignore:numpy.ndarray size changed:RuntimeWarning",
]
[tool.isort]
multi_line_output = 5
known_first_party = "emsarray,tests"