-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (71 loc) · 3.19 KB
/
pyproject.toml
File metadata and controls
79 lines (71 loc) · 3.19 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
# 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 = [
'PyJWT',
'jsonschema',
'oms-mqclient[rabbitmq]',
'openapi-core',
'pymongo',
'wipac-dev-tools',
'wipac-rest-tools[telemetry]',
]
dynamic = ["version"] # do not edit — autogenerated by wipac-dev-py-setup-action
name = "mqs" # do not edit — autogenerated by wipac-dev-py-setup-action
requires-python = ">=3.12, <3.14" # do not edit — autogenerated by wipac-dev-py-setup-action
keywords = [
'EWMS',
'task',
'Workflow Management Service',
'WIPAC',
'IceCube',
'Observation Management Service',
'Event Workflow Management System',
] # do not edit — autogenerated by wipac-dev-py-setup-action
description = "EWMS's Message Queue Service (MQS): The Interface to the DDS's Message Queue Broker" # 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
classifiers = [
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
] # do not edit — autogenerated by wipac-dev-py-setup-action
[project.optional-dependencies]
tests = [
'nest-asyncio',
'pytest',
'pytest-asyncio',
'pytest-mock',
]
dev = [
'black',
'mypy',
]
mypy = [
'black',
'mypy',
'nest-asyncio',
'pytest',
'pytest-asyncio',
'pytest-mock',
] # do not edit — autogenerated by wipac-dev-py-setup-action
[project.urls] # do not edit — autogenerated by wipac-dev-py-setup-action
Homepage = "https://github.com/Observation-Management-Service/ewms-message-queue-service" # do not edit — autogenerated by wipac-dev-py-setup-action
Tracker = "https://github.com/Observation-Management-Service/ewms-message-queue-service/issues" # do not edit — autogenerated by wipac-dev-py-setup-action
Source = "https://github.com/Observation-Management-Service/ewms-message-queue-service" # do not edit — autogenerated by wipac-dev-py-setup-action
Documentation = "https://observation-management-service.github.io/ewms-docs/services/mqs.html"
[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] # do not edit — autogenerated by wipac-dev-py-setup-action
packages = [
'mqs',
'mqs.database',
'mqs.rest_handlers',
] # do not edit — autogenerated by wipac-dev-py-setup-action
[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 = "CANNOT_BUILD_WITHOUT_GIT_DIR" # used when SCM metadata is missing (no '.git/') — if '.git/' exists but does not contain tags, a commit-based version (like '0.1.dev1+g79c9b4b') will be used instead.