summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: c58c26d1849c41dfbd6f3eff6975e7401a0dd23d (plain)
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
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"

[project]
name = "blinker"
license = {text = "MIT License"}
authors = [{name = "Jason Kirtland", email = "jek@discorporate.us"}]
maintainers = [{name = "Pallets Ecosystem", email = "contact@palletsprojects.com"}]
description = "Fast, simple object-to-object and broadcast signaling"
keywords = [
    "signal",
    "emit",
    "events",
    "broadcast",
]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    "Programming Language :: Python",
    "Topic :: Software Development :: Libraries",
]
requires-python = ">= 3.7"
dynamic = ["version"]

[project.urls]
Homepage = "https://blinker.readthedocs.io"
Documentation = "https://blinker.readthedocs.io"
"Source Code" = "https://github.com/pallets-eco/blinker/"
"Issue Tracker" = "https://github.com/pallets-eco/blinker/issues/"
Chat = "https://discord.gg/pallets"

[project.readme]
file = "README.rst"
content-type = "text/x-rst"

[tool.mypy]
python_version = "3.7"
files = ["src/blinker"]
show_error_codes = true
pretty = true
#strict = true
allow_redefinition = true
disallow_subclassing_any = true
#disallow_untyped_calls = true
#disallow_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
local_partial_types = true
no_implicit_reexport = true
strict_equality = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
warn_return_any = true
#warn_unreachable = True

[tool.setuptools]
license-files = ["LICENSE.rst"]

[tool.setuptools.dynamic]
version = {attr = "blinker.__version__"}

[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
filterwarnings = ["error"]