-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (51 loc) · 1.38 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "thenamelisttool"
description = "Provides command line tools useful to work with namelists or pack of namelists."
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 = [
"pyyaml",
"bronx",
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/meunierlf/thenamelisttool"
[project.scripts]
"tnt.py" = "thenamelisttool.entrypoints.tnt:main"
"tntcompose.py" = "thenamelisttool.entrypoints.tntcompose:main"
"tntdiff.py" = "thenamelisttool.entrypoints.tntdiff:main"
"tntdiffpack.py" = "thenamelisttool.entrypoints.tntdiffpack:main"
"tntstack.py" = "thenamelisttool.entrypoints.tntstack:main"
[project.optional-dependencies]
docs = [
"sphinx",
]
tests = [
"pyyaml",
]
[tool.setuptools.package-data]
"thenamelisttool.templates" = ["*", ]
[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"