-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (35 loc) · 913 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
[build-system]
requires=["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "py-amqp-client"
description = "AMQP synchronous/asynchronous messaging"
readme = "README.md"
requires-python = ">= 3.10"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX",
"Topic :: Communications",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
]
dependencies = [
"pika>=1.3.2",
"typing_extensions",
]
version = "2.0.0"
[[project.authors]]
name = "David Marteau"
email = "[email protected]"
[tool.setuptools.packages.find]
include = [
"amqpclient",
"amqpclient.*",
]
[tool.autopep8]
max_line = 120
in-place = true
recursive = true