-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
67 lines (54 loc) · 1.58 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
59
60
61
62
63
64
65
66
67
[project.urls]
Repository = "https://github.com/ansible/dispatcherd"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "dispatcherd"
version = "0.1.0"
description = "An asyncio-based dispatcher for tasks in a worker pool."
readme = "README.md"
authors = [{ name = "Alan Rominger", email = "[email protected]" }]
license = { text = "MIT" }
keywords = [
"asyncio",
"multiprocessing",
"dispatcher",
"dispatcherd",
"pg_notify",
"python",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = ["pyyaml"]
[project.scripts]
dispatcherd = "dispatcherd.cli:standalone"
dispatcherctl = "dispatcherd.cli:control"
[tool.setuptools.packages.find]
include = ["dispatcherd*"]
[tool.setuptools]
include-package-data = true # Ensures package data is included
[tool.setuptools.package-data]
"dispatcher" = ["LICENSE", "README.md"]
# You need psycopg, but this will not help you to install it
# Linters coppied from django-ansible-base, exceptions removed
[tool.setuptools_scm]
version_scheme = "calver-by-date"
[tool.black]
line-length = 160
fast = true
skip-string-normalization = true
[tool.isort]
profile = "black"
line_length = 160
[project.optional-dependencies]
pg_notify = ["psycopg[binary]>=3.2.0"]
[tool.pytest.ini_options]
log_cli_level = "DEBUG"