-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
44 lines (39 loc) · 1.16 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
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = 'dsw-command-queue'
version = "4.14.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.11',
'Programming Language :: Python :: 3.12',
'Topic :: Database',
'Topic :: Text Processing',
'Topic :: Utilities',
]
requires-python = '>=3.11, <4'
dependencies = [
'func-timeout',
# DSW
"dsw-database==4.14.0",
]
[project.urls]
Homepage = 'https://ds-wizard.org'
Repository = 'https://github.com/ds-wizard/engine-tools'
Documentation = 'https://guide.ds-wizard.org'
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
include = ['dsw*']
[tool.distutils.bdist_wheel]
universal = true