-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
62 lines (55 loc) · 1.91 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
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "iteration_utilities"
version = "0.13.0"
description = "Utilities based on Pythons iterators and generators."
readme = "README.rst"
requires-python = ">=3.7"
authors = [
{name = "Michael Seifert", email = "[email protected]"},
]
license = {text = "Apache License Version 2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Utilities",
]
keywords = ["functional", "functools", "generator", "itertools", "iteration", "iterator", "operators", "performance", "reduce", "utility"]
[project.urls]
Homepage = "https://github.com/MSeifert04/iteration_utilities"
Documentation = "https://iteration-utilities.readthedocs.io/en/latest/"
Repository = "https://github.com/MSeifert04/iteration_utilities.git"
Changelog = "https://github.com/MSeifert04/iteration_utilities/blob/master/docs/CHANGES.rst"
[project.optional-dependencies]
test = ["pytest"]
documentation = ["sphinx>=2.2", "numpydoc"]
[tool.pytest.ini_options]
addopts = "--doctest-glob='docs/*.rst' --ignore='setup.py'"
testpaths = [
"tests",
"docs"
]
[tool.coverage.run]
branch = true
omit = [
"setup.py",
"tests/*",
"*_iteration_utilities*"
]
[tool.coverage.report]
show_missing = true
precision = "2"