forked from pypatterns/python-cqrs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (73 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
78 lines (73 loc) · 1.81 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
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
68
69
70
71
72
73
74
75
76
77
78
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=42", "wheel"]
[project]
authors = [
{name = "Vadim Kozyrevskiy", email = "vadikko2@mail.ru"},
{name = "Dmitry Kutlubaev", email = "kutlubaev00@mail.ru"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"pydantic==2.*",
"orjson==3.9.15",
"di[anyio]==0.79.2",
"sqlalchemy[asyncio]==2.0.*",
"retry-async==0.1.4",
"python-dotenv==1.0.1",
"dependency-injector>=4.48.2"
]
description = "Python CQRS pattern implementation"
maintainers = [{name = "Vadim Kozyrevskiy", email = "vadikko2@mail.ru"}]
name = "python-cqrs"
readme = "README.md"
requires-python = ">=3.10"
version = "4.4.5"
[project.optional-dependencies]
dev = [
# Develope tools
"pycln==2.5.0",
"pre-commit==3.8.0",
"pyright==1.1.377",
"ruff==0.6.2",
# Tests
"aiokafka==0.10.0",
"pytest~=7.4.2",
"pytest-asyncio~=0.21.1",
"pytest-env==0.6.2",
"cryptography==42.0.2",
"asyncmy==0.2.9",
"requests>=2.32.5"
]
examples = [
"fastapi==0.109.*",
"uvicorn==0.32.0",
"faststream[kafka]==0.5.28",
"faker>=37.12.0"
]
kafka = [
"aiokafka==0.10.0",
# for SchemaRegistry
"confluent-kafka==2.6.0"
]
protobuf = ["protobuf==4.25.5"]
rabbit = [
"aio-pika==9.3.0"
]
[project.urls]
Documentation = "https://vadikko2.github.io/python-cqrs-mkdocs/"
Issues = "https://github.com/vadikko2/python-cqrs/issues"
Repository = "https://github.com/vadikko2/python-cqrs"
[tool.pytest.ini_options]
addopts = "--junit-xml=report.xml"
asyncio_mode = "auto"
junit_family = "xunit1"
testpaths = ["tests"]
[tool.setuptools.packages.find]
where = ["src"]