-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (103 loc) · 3.51 KB
/
pyproject.toml
File metadata and controls
112 lines (103 loc) · 3.51 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# pyproject.toml
# Note: Many fields are autogenerated by 'WIPACrepo/wipac-dev-py-setup-action'.
# See this repo's GitHub Actions workflow(s) (.github/workflows/*.yaml)
# and https://github.com/WIPACrepo/wipac-dev-py-setup-action for details.
[project]
dependencies = [
'wipac-dev-tools',
'zstd',
]
dynamic = ["version"] # do not edit — autogenerated by wipac-dev-py-setup-action
name = "oms-mqclient" # do not edit — autogenerated by wipac-dev-py-setup-action
description = "A Message Queue Client API Supporting Apache Pulsar, RabbitMQ, and NATS.io" # do not edit — autogenerated by wipac-dev-py-setup-action
readme = "README.md" # do not edit — autogenerated by wipac-dev-py-setup-action
license = "MIT" # do not edit — autogenerated by wipac-dev-py-setup-action
license-files = ["LICENSE"] # do not edit — autogenerated by wipac-dev-py-setup-action
keywords = [
'Observation Management Service',
'Event Workflow Management System',
'EWMS',
'python message passing client',
'message passing',
'API',
'mq',
'apache',
'pulsar',
'pubsub',
'rabbitmq',
'pika',
'nats',
'nats.io',
] # do not edit — autogenerated by wipac-dev-py-setup-action
classifiers = [
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
] # do not edit — autogenerated by wipac-dev-py-setup-action
requires-python = ">=3.10, <3.14" # do not edit — autogenerated by wipac-dev-py-setup-action
[project.optional-dependencies]
all = [
'nats-py[nkeys]',
'pika',
'pulsar-client',
]
pulsar = [
'pulsar-client',
]
rabbitmq = [
'pika',
]
nats = [
'nats-py[nkeys]',
]
telemetry = [
'wipac-telemetry',
]
dev = [
'asyncstdlib',
'coloredlogs',
'mock',
'mypy',
'pytest',
'pytest-asyncio',
'pytest-mock',
]
integration = [
'pytest-xdist',
'wipac-keycloak-rest-services',
'wipac-rest-tools',
]
mypy = [
'asyncstdlib',
'coloredlogs',
'mock',
'mypy',
'nats-py[nkeys]',
'pika',
'pulsar-client',
'pytest',
'pytest-asyncio',
'pytest-mock',
'pytest-xdist',
'wipac-keycloak-rest-services',
'wipac-rest-tools',
'wipac-telemetry',
] # do not edit — autogenerated by wipac-dev-py-setup-action
[[project.authors]]
name = "WIPAC Developers"
email = "developers@icecube.wisc.edu"
[project.urls] # do not edit — autogenerated by wipac-dev-py-setup-action
Homepage = "https://pypi.org/project/oms-mqclient/"
Tracker = "https://github.com/Observation-Management-Service/MQClient/issues"
Source = "https://github.com/Observation-Management-Service/MQClient"
[build-system] # do not edit — autogenerated by wipac-dev-py-setup-action
requires = ["setuptools>=78.1", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find] # do not edit — autogenerated by wipac-dev-py-setup-action
namespaces = false
exclude = ["test", "tests", "doc", "docs", "resource", "resources", "example", "examples"]
[tool.setuptools.package-data]
"*" = ["py.typed"] # do not edit — autogenerated by wipac-dev-py-setup-action
[tool.setuptools_scm] # do not edit — autogenerated by wipac-dev-py-setup-action
fallback_version = "UNTAGGED" # only used when SCM metadata is completely unavailable (e.g., no '.git/'). NOTE: in shallow clones without git tags, setuptools-scm will still infer a commit-based version (like '0.1.dev1+g79c9b4b'); this value will NOT be used in that case.