aioitertools/pyproject.toml

52 lines
1.1 KiB
TOML
Raw Normal View History

2020-04-22 18:05:20 +00:00
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "aioitertools"
2022-08-24 04:48:43 +00:00
author = "Amethyst Reese"
author-email = "amy@noswap.com"
2020-04-22 18:05:20 +00:00
description-file = "README.md"
2020-04-29 06:20:12 +00:00
home-page = "https://aioitertools.omnilib.dev"
requires = ["typing_extensions>=4.0; python_version < '3.10'"]
2020-04-22 18:05:20 +00:00
requires-python = ">=3.6"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
]
2020-04-29 06:20:12 +00:00
[tool.flit.metadata.urls]
Documentation = "https://aioitertools.omnilib.dev/en/latest/"
Github = "https://github.com/omnilib/aioitertools"
2020-04-22 18:05:20 +00:00
[tool.flit.sdist]
exclude = [
".github/",
]
2020-11-09 03:54:59 +00:00
[tool.attribution]
name = "aioitertools"
package = "aioitertools"
version_file = true
2020-04-22 18:05:20 +00:00
[tool.coverage.run]
branch = true
include = ["aioitertools/*"]
omit = ["aioitertools/tests/*"]
[tool.coverage.report]
2022-02-07 05:25:51 +00:00
fail_under = 97
2020-04-22 18:05:20 +00:00
precision = 1
show_missing = true
skip_covered = true
[tool.isort]
line_length = 88
multi_line_output = 3
force_grid_wrap = false
include_trailing_comma = true
2020-11-09 03:54:59 +00:00
use_parentheses = true