-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
87 lines (80 loc) · 1.57 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "diator"
version = "0.1.2"
authors = [{ name = "Murad Akhundov", email = "[email protected]" }]
description = "Diator is a Python library for implementing CQRS pattern in your Python applications."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
dependencies = ["orjson", "dataclass_factory"]
keywords = [
"diator",
"CQRS",
"event",
"command",
"query",
"events",
"commands",
"queries",
"mediator",
"mediatr",
"di",
"async",
"asyncio",
]
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
"/examples",
"/deps",
"/htmlcov",
"/tests",
"mkdocs-plugins.code-workspace",
"Makefile",
"CODE_OF_CONDUCT.md",
".isort.cfg",
".gitignore",
".flake8",
"junit",
"requirements.txt",
"mypy.ini",
"pytest.ini",
".flake8",
"pytest.ini",
]
[project.urls]
"Homepage" = "https://github.com/akhundMurad/diator"
"Bug Tracker" = "https://github.com/akhundMurad/diator/issues"
[project.optional-dependencies]
redis = ["redis"]
azure = ["azure-servicebus"]
test = [
"pytest",
"pytest-asyncio",
"types-redis",
"mkdocs",
"mkdocs-material",
"mkdocstrings",
"black",
"vulture",
"mypy",
"isort",
"flake8",
"azure-servicebus",
"redis",
"di[anyio]",
"rodi",
]
[tool.isort]
profile = "black"