-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
68 lines (58 loc) · 1.49 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
[tool.poetry]
name = "didiator"
version = "0.4.0"
description = "A library that implements the Mediator pattern and uses DI library"
authors = [
"SamWarden <[email protected]>",
]
maintainers = [
"SamWarden <[email protected]>",
]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/SamWarden/didiator"
repository = "https://github.com/SamWarden/didiator"
keywords = [
"didiator",
"mediatr",
"mediator",
"CQRS",
"DI",
"events",
"ioc",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/SamWarden/didiator/issues"
[tool.poetry.dependencies]
python = "^3.11,<4"
di = {version = "^0.79.2", extras = ["anyio"], optional = true}
dishka = "^1.3.0"
[tool.poetry.extras]
di = ["di"]
dishka = ["dishka"]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
pytest-asyncio = "^0.20.3"
[tool.poetry.group.lint]
optional = true
[tool.poetry.group.lint.dependencies]
pylint = "^2.15.9"
mypy = "^0.991"
flake8 = "^6.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"