-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (41 loc) · 959 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
43
44
45
46
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "iterum"
description = 'Rusty iterators in Python.'
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
keywords = []
authors = [
{ name = "Tyler Smart", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://tjsmart.github.io/iterum"
Source = "https://github.com/tjsmart/iterum"
[tool.setuptools.package-data]
iterum = ["py.typed"]
[tool.hatch]
version.path = "iterum/__about__.py"
[tool.coverage.run]
branch = true
parallel = true
omit = [
"iterum/__about__.py",
]
[tool.coverage.report]
exclude_lines = [
"no cov",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.ruff]
line-length = 120