-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
35 lines (32 loc) · 944 Bytes
/
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
[project]
name = "mch-python-blueprint"
version = "0.2.0"
description = "MCH APN Blueprint for Python packages"
readme = "README.rst"
keywords = [
"mch-python-blueprint",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
]
requires-python = ">=3.8"
authors = [
{name="Carlos Osuna", email="[email protected]"},
{name="Daniel Regenass", email="[email protected]"},
{name="Stefan Ruedisuehli", email="[email protected]"}
]
[project.urls]
source = "https://github.com/MeteoSwiss-APN/mch-python-blueprint"
documentation = "https://meteoswiss-apn.github.io/mch-python-blueprint"
[tool.rstcheck]
ignore_directives = [
"automodule",
"mdinclude",
]
[tool.codespell]
ignore-words-list = "inout"
skip = "requirements/*"