-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.36 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
[tool.poetry]
name = "python-mediator"
version = "0.7.0"
description = "Python mediator bus microframework for CQRS + ES"
authors = ["Damian Łukawski <[email protected]>"]
license = "MIT"
packages = [
{ include = "mediator" },
]
exclude = ["**/test/*"]
readme = "README.md"
homepage = "https://github.com/dlski/python-mediator"
repository = "https://github.com/dlski/python-mediator"
keywords = ["mediator", "cqrs", "event-driven", "enterprise"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[tool.poetry.dependencies]
python = ">=3.7 <3.11"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
isort = "^5.5.4"
flake8 = "^3.8.3"
flake8-isort = "^4.0.0"
flake8-black = "^0.2.1"
pytest = "^6.1.0"
pytest-cov = "^2.11.1"
pytest-asyncio = "^0.14.0"
importlib_metadata = { version = "^3.7.0", python = "~3.7" }
mypy = "^0.910"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"