-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (36 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "snakeling"
description = "A test Python project"
authors = [
{name = "Nicolas Canceill"},
{email = "[email protected]"},
]
readme = "src/README.md"
license = {text = "GPL"}
dynamic = ["version"]
requires-python = ">=3.11"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://github.com/ncanceill/snakeling"
Documentation = "https://ncanceill.github.io/snakeling"
[project.optional-dependencies]
dev = ["setuptools", "setuptools-scm"]
doc = ["pdoc"]
quality = ["black", "flake8", "Flake8-pyproject", "isort"]
testing = ["mypy"]
[tool.black]
exclude = "benv|build|venv"
[tool.flake8]
exclude = ["benv", "build", "venv"]
extend-ignore = ["E203"]
[tool.mypy]
exclude = "benv|build|venv"
[tool.setuptools_scm]
tag_regex = '^(?:v)(?P<version>\d+(?:\.\d+){0,2})'