forked from jasonrbriggs/stomp.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 943 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
[tool.poetry]
name = "stomp.py"
version = "7.0.0"
description = "Python STOMP client, supporting versions 1.0, 1.1 and 1.2 of the protocol"
authors = ["Jason R Briggs <[email protected]>"]
license = "Apache-2.0"
readme = "README.rst"
repository = "https://github.com/jasonrbriggs/stomp.py"
documentation = "http://jasonrbriggs.github.io/stomp.py/"
keywords = ["stomp", "messaging", "events", "client"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
]
packages = [
{ include = "stomp" }
]
[tool.poetry.dependencies]
python = "^3.6"
docopt = "^0.6.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-cov = "^2.8.1"
pytest-mock = "^2.0.0"
pytest-html = "^2.0.1"
pytest-ordering = "^0.6"
[tool.poetry.scripts]
stomp = "stomp.__main__:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"