-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (44 loc) · 2.3 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
version = "0.26.8"
dependencies = ["htchirp", "htcondor", "oms-mqclient", "numpy"]
name = "ewms-pilot"
keywords = ["pilot", "Observation Management Service", "Event Workflow Management Service", "EWMS", "message passing", "MQ", "task"]
requires-python = ">=3.10, <3.13"
description = "EWMS's Pilot: A Job Pilot for Processing EWMS Events/Tasks"
readme = "README.md"
classifiers = ["Development Status :: 4 - Beta", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12"]
[[project.authors]]
name = "WIPAC Developers"
email = "[email protected]"
[project.license]
file = "LICENSE"
[project.optional-dependencies]
pulsar = ["oms-mqclient[pulsar]"]
rabbitmq = ["oms-mqclient[rabbitmq]"]
nats = ["oms-mqclient[nats]"]
all = ["oms-mqclient[all]"]
test = ["asyncstdlib", "pytest", "pytest-asyncio", "pytest-retry"]
mypy = ["oms-mqclient[all]", "asyncstdlib", "pytest", "pytest-asyncio", "pytest-retry"]
[project.urls]
Homepage = "https://pypi.org/project/ewms-pilot/"
Tracker = "https://github.com/Observation-Management-Service/ewms-pilot/issues"
Source = "https://github.com/Observation-Management-Service/ewms-pilot"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
version_variables = ["ewms_pilot/__init__.py:__version__"]
commit_parser = "emoji"
build_command = "pip install build && python -m build"
[tool.semantic_release.commit_parser_options]
major_tags = ["[major]"]
minor_tags = ["[minor]", "[feature]"]
patch_tags = ["[patch]", "[fix]", " ", "!", "#", "$", "%", "&", "'", "(", ")", "*", "+", "-", ".", "/", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ":", ";", "<", "=", ">", "?", "@", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "[", "]", "^", "_", "`", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "{", "|", "}", "~"]
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.setuptools.packages.find]
namespaces = false
exclude = ["test", "tests", "doc", "docs", "resource", "resources", "example", "examples"]