-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (66 loc) · 2.29 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
[tool.poetry]
name = "amqp-client-python"
version = "0.2.0"
description = "Python AMQP Client Library"
license = "Apache-2.0"
authors = ["NUTES UEPB <[email protected]>"]
readme = "README.md"
packages = [{include = "amqp_client_python"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Communications",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
]
homepage = "https://github.com/nutes-uepb/amqp-client-python"
repository = "https://github.com/nutes-uepb/amqp-client-python"
keywords = ["packaging", "dependency", "amqp-client-python"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/nutes-uepb/amqp-client-python/issues"
[project]
maintainers = [
{name = "João Pedro Miranda C. Hluchan", email = "[email protected]"}
]
[project.urls]
Source = "https://github.com/nutes-uepb/amqp-client-python"
[tool.poetry.dependencies]
python = "^3.7"
pika = "^1.3.0"
[tool.poetry.package-data]
amqp_client_python = ["py.typed"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
dependency-injector = "^4.40.0"
pytest-asyncio-cooperative = "^0.30.0"
taskipy = "^1.12.0"
pytest-cov = "^4.1.0"
[tool.poetry.group.doc.dependencies]
mkdocstrings = "0.22.0"
mkdocstrings-python = "1.1.2"
mkdocs-material = "9.1.21"
mkdocs-macros-plugin = "0.7.0"
jinja2 = "^3.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "."
addopts = "--doctest-modules"
[tool.taskipy.tasks]
lint = "flake8 amqp_client_python/ --ignore=E722,W503,E402 --count --max-line-length=127 --statistics"
docs = "mkdocs serve"
pre_test = "task lint && docker compose up -d rabbitmq"
test = "pytest tests/unit -s -x --cov=amqp_client_python -vv"
post_test = "coverage html"