-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (46 loc) · 1.37 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
[project.urls]
Repository = "https://github.com/ansible/dispatcher"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dispatcher"
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", "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]
dispatcher-standalone = "dispatcher.cli:standalone"
[tool.setuptools.packages.find]
include = ["dispatcher*"]
# 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]"]
[tool.pytest.ini_options]
log_cli_level = "DEBUG"