This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
79 lines (71 loc) · 1.51 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
[tool.poetry]
name = "melange"
version = "7.3.0"
description = "A messaging library for an easy inter-communication in distributed and microservices architectures"
authors = ["David Jiménez (Rydra)"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8.0"
boto3 = "^1.11.5"
pika = "^1.1.0"
marshmallow = "^3.3.0"
pytz = "^2019.3"
funcy = "^1.14"
methoddispatch = "^3.0.2"
singleton-py3 = "^0.2.1"
toolz = "^0.11.2"
aioboto3 = "^9.5.0"
anyio = "^3.5.0"
redis = "^4.2.2"
[tool.poetry.dev-dependencies]
pytest-tools = {git = "https://github.com/Rydra/pytest-tools"}
pytest = "^5.3.3"
pyhamcrest = "^2.0.0"
bunch = "^1.0.1"
simple-cqrs = "^1.0.0"
mkdocs = "^1.2.3"
mkdocstrings = "^0.17.0"
mkdocs-material = "^8.1.7"
polling = "^0.3.2"
doublex = "^1.9.3"
pytest-cov = "^3.0.0"
[tool.commitizen]
name = "cz_conventional_commits"
version = "7.3.0"
tag_format = "$version"
version_files = [
"melange/__version__.py",
"pyproject.toml:version"
]
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pytest.ini_options]
markers = [
"acceptancetest: marks a test as an acceptance test",
"documentation",
"integrationtest"
]
norecursedirs = ".cache dumps *.egg-info .git appdir .tox"
[tool.coverage.run]
omit = [
"melange/examples/*",
"melange/__version__.py",
"melange/backends/rabbitmq/*"
]
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"