-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
42 lines (38 loc) · 924 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
36
37
38
39
40
41
42
[build-system]
requires = [
"setuptools>=62",
"wheel", # for bdist package distribution
]
build-backend = "setuptools.build_meta"
[project]
# PEP 621 project metadata
# See https://www.python.org/dev/peps/pep-0621/
name = "xontrib-template"
version = "0.2.0"
description = "Full-featured template for building extension (xontrib) for the xonsh shell."
authors = [
{ name = "Your Name", email = "you@example.com" },
]
license = { text = "MIT" }
requires-python = ">=3.8,<4.0"
dependencies = [
"copier>=9",
"copier-templates-extensions"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"validate-pyproject[all]<1.0.0,>=0.7.2",
"tomli<3.0.0,>=2.0.1",
"xonsh>=0.12.5",
"pyyaml>=6.0.1"
]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.pdm]
[tool.pdm.dev-dependencies]
[tool.semantic_release]
version_toml = "pyproject.toml:project.version"
version_source = "tag"