forked from maxfischer2781/asyncstdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (54 loc) · 1.64 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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "asyncstdlib"
author = "Max Fischer"
author-email = "[email protected]"
home-page = "https://github.com/maxfischer2781/asyncstdlib"
description-file = "README.rst"
keywords = "async enumerate itertools builtins functools contextlib"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
requires-python = "~=3.6"
requires = ["typing_extensions; python_version<'3.8'"]
[tool.flit.metadata.requires-extra]
test = [
"pytest",
"flake8",
"flake8-bugbear",
"black; implementation_name=='cpython'",
"coverage",
"pytest-cov",
"flake8-2020",
"mypy; implementation_name=='cpython'",
]
doc = ["sphinx", "sphinxcontrib-trio"]
[tool.flit.metadata.urls]
Documentation = "https://asyncstdlib.readthedocs.io/en/latest/"
[tool.mypy]
files = ["asyncstdlib/*.py"]
check_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unreachable = true
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
warn_return_any = true
no_implicit_reexport = true
strict_equality = true