-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
28 lines (25 loc) · 892 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "ssorj-qtools"
version = "1.0.1"
authors = [ { name = "Justin Ross", email = "[email protected]"} ]
description = "Command-line tools for sending and receiving AMQP 1.0 messages"
license = { file = "LICENSE.txt" }
readme = "README.md"
classifiers = [ "License :: OSI Approved :: Apache Software License" ]
requires-python = ">=3.7"
dependencies = [ "python-qpid-proton" ]
[project.scripts]
qconnect = "qtools.connect:main"
qsend = "qtools.send:main"
qreceive = "qtools.receive:main"
qrequest = "qtools.request:main"
qrespond = "qtools.respond:main"
qmessage = "qtools.message:main"
qbroker = "qtools.brokerlib:main"
qtools-self-test = "qtools.tests:main"
[project.urls]
"Homepage" = "https://github.com/ssorj/qtools"
"Bug Tracker" = "https://github.com/ssorj/qtools/issues"