-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (45 loc) · 1.09 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
[tool.poetry]
name = "substantial"
version = "0.0.1"
description = "Brokerless durable execution for Python."
authors = []
license = "MPL-2.0"
readme = "README.md"
include = [
"dataconf", "pyproject.toml"
]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
keywords = [
"durable",
"execution",
"redis",
"s3",
"filesystem",
]
[tool.poetry.dependencies]
python = "^3.11"
asyncio = "^3.4.3"
uvloop = "^0.21.0"
aioprocessing = { version = "2.0.1", extras = ["dill"] }
pydantic = "^2.9.2"
redis = "^5.2.0"
betterproto = { version = "2.0.0b7", extras = ["compiler"]}
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-asyncio = ">=0.23.7,<0.25.0"
commitizen = ">=3.29.0"
[tool.commitizen]
name = "cz_conventional_commits"
version = "3.3.0"
tag_format = "v$major.$minor.$patch$prerelease"
version_files = [
"pyproject.toml:version",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"