-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
56 lines (50 loc) · 1.04 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "bronx"
description = "Bunch of Reusable Objects Not in vorteX."
readme = "README.md"
requires-python = ">=3.7"
keywords = []
license = {text = "CECILL-C"}
authors = [
{name = "The Vortex Team", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: CeCILL-C Free Software License Agreement (CECILL-C)",
]
dependencies = [
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/UMR-CNRM/bronx"
[project.optional-dependencies]
docs = [
"sphinx",
"numpy",
"scipy",
"matplotlib",
"pyyaml",
"netCDF4",
"Pillow"
]
tests = [
"numpy",
"scipy",
"pyyaml",
"netCDF4",
]
[tool.setuptools_scm]
tag_regex = '^(?P<prefix>v)?(?P<version>[^\+]+)(?P<suffix>.*)?$'
[tool.pytest.ini_options]
pythonpath = [
"src",
]
testpaths = [
"tests",
]
[tool.pydocstyle]
convention = "pep257"
add_ignore = "D105,D107,D200,D204,D205,D400,D401,D402"