aioitertools/pyproject.toml

65 lines
1.4 KiB
TOML
Raw Normal View History

2020-04-22 18:05:20 +00:00
[build-system]
requires = ["flit_core >=3.8,<4"]
2020-04-22 18:05:20 +00:00
build-backend = "flit_core.buildapi"
[project]
name = "aioitertools"
readme = "README.md"
authors = [{ name = "Amethyst Reese", email = "amethyst@n7.gg" }]
license = { file = "LICENSE" }
dynamic = ["version", "description"]
2020-04-22 18:05:20 +00:00
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.8"
dependencies = ["typing_extensions>=4.0; python_version < '3.10'"]
2020-04-22 18:05:20 +00:00
[project.optional-dependencies]
dev = [
"attribution==1.8.0",
"black==24.8.0",
"build>=1.2",
"coverage==7.6.1",
"flake8==7.1.1",
"flit==3.9.0",
"mypy==1.11.2",
"usort==1.0.8.post1",
"ufmt==2.7.1",
]
docs = [
"sphinx==8.0.2",
"sphinx-mdinclude==0.6.2",
]
[project.urls]
Documentation = "https://aioitertools.omnilib.dev"
2020-04-29 06:20:12 +00:00
Github = "https://github.com/omnilib/aioitertools"
2020-04-22 18:05:20 +00:00
[tool.flit.sdist]
exclude = [".github/"]
2020-04-22 18:05:20 +00:00
2020-11-09 03:54:59 +00:00
[tool.attribution]
name = "aioitertools"
package = "aioitertools"
version_file = true
2022-09-17 21:24:46 +00:00
ignored_authors = ["dependabot[bot]"]
2020-11-09 03:54:59 +00:00
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.mypy]
# strict = true
ignore_missing_imports = true