-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (44 loc) · 1.22 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
[project]
version = "1.11.1"
requires-python = ">=3.9"
name = "iterpy"
description = "iterpy"
dependencies = []
authors = [{ name = "Martin Bernstorff", email = "[email protected]" }]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.license]
file = "LICENSE"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[dependency-groups]
dev = [
"cruft==2.15.0",
"lumberman",
"pyright==1.1.363",
"pytest==8.2.1",
"pytest-xdist==3.6.1",
"pytest-sugar==1.0.0",
"pytest-codspeed",
"ruff==0.4.4",
]
[project.urls]
homepage = "https://github.com/MartinBernstorff/iterpy"
repository = "https://github.com/MartinBernstorff/iterpy"
documentation = "https://MartinBernstorff.github.io/iterpy/"
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["py.typed", "*.pyi"]
[tool.semantic_release]
branch = "main"
version_toml = ["pyproject.toml:project.version"]
build_command = "python -m pip install build; python -m build"