-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (32 loc) · 980 Bytes
/
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
[tool.poetry]
name = "zmq_tubes"
version = "1.14.0"
license = "MIT"
readme = "README.md"
description = "Wrapper for ZMQ comunication."
authors = ["Martin Korbel <[email protected]>"]
homepage = "https://github.com/calcite/zmq_tubes"
repository = "https://github.com/calcite/zmq_tubes"
documentation = "https://github.com/calcite/zmq_tubes"
keywords = ["zmq", "mqtt", "tubes", "zmq_tubes"]
classifiers = [
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.6"
pyzmq = "*"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
PyYAML = "^5.4.1 || ^6.0"
pytest-asyncio = [{ version = "^0.19.0", python = "^3.7" },
{ version = "^0.16.0", python = "^3.6" }]
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
zmqtube-monitor = "zmq_tubes.monitoring:main"