2020-04-22 18:05:20 +00:00
|
|
|
[build-system]
|
2024-02-06 02:53:19 +00:00
|
|
|
requires = ["flit_core >=3.8,<4"]
|
2020-04-22 18:05:20 +00:00
|
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
|
2024-02-06 02:53:19 +00:00
|
|
|
[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",
|
|
|
|
]
|
2024-02-06 02:53:19 +00:00
|
|
|
requires-python = ">=3.8"
|
|
|
|
dependencies = ["typing_extensions>=4.0; python_version < '3.10'"]
|
2020-04-22 18:05:20 +00:00
|
|
|
|
2024-02-06 02:53:19 +00:00
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
2024-07-04 23:36:44 +00:00
|
|
|
"attribution==1.8.0",
|
2024-09-01 04:11:05 +00:00
|
|
|
"black==24.8.0",
|
2024-09-02 03:26:50 +00:00
|
|
|
"build>=1.2",
|
2024-09-01 04:00:29 +00:00
|
|
|
"coverage==7.6.1",
|
2024-09-01 03:55:06 +00:00
|
|
|
"flake8==7.1.1",
|
2024-02-06 02:53:19 +00:00
|
|
|
"flit==3.9.0",
|
2024-09-01 03:54:57 +00:00
|
|
|
"mypy==1.11.2",
|
2024-03-24 21:01:58 +00:00
|
|
|
"usort==1.0.8.post1",
|
2024-09-01 04:11:18 +00:00
|
|
|
"ufmt==2.7.1",
|
2024-02-06 02:53:19 +00:00
|
|
|
]
|
|
|
|
docs = [
|
2024-09-01 04:05:54 +00:00
|
|
|
"sphinx==8.0.2",
|
2024-09-01 04:00:04 +00:00
|
|
|
"sphinx-mdinclude==0.6.2",
|
2024-02-06 02:53:19 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[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]
|
2024-02-06 02:53:19 +00:00
|
|
|
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
|
|
|
|
|
2024-02-06 02:53:19 +00:00
|
|
|
[tool.mypy]
|
|
|
|
# strict = true
|
2024-09-02 03:26:50 +00:00
|
|
|
ignore_missing_imports = true
|