-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 1.17 KB
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
[project]
name = "dsw-command-queue"
version = "4.28.0"
description = "Library for working with command queue and persistent commands"
readme = "README.md"
keywords = ["dsw", "subscriber", "publisher", "database", "queue", "processing"]
license = { text = "Apache License 2.0" }
authors = [
{ name = "Marek Suchánek", email = "marek.suchanek@ds-wizard.org" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: Text Processing",
"Topic :: Utilities",
]
requires-python = ">=3.12, <4"
dependencies = [
"func-timeout",
"tenacity",
# DSW
"dsw-database==4.28.0",
]
[project.urls]
Homepage = "https://ds-wizard.org"
Repository = "https://github.com/ds-wizard/engine-tools"
Documentation = "https://guide.ds-wizard.org"
Issues = "https://github.com/ds-wizard/ds-wizard/issues"
[build-system]
requires = ["uv_build>=0.9.25,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "dsw.command_queue"
module-root = ""