summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 65e5e5df5ef025416c3766f79e5a056d64fdc4f2 (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
[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.setuptools]
license-files = ["LICENSE.rst"]
include-package-data = false

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

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