-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 2.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "babelqueue"
version = "1.0.0"
description = "Polyglot Queues, Simplified — the Python core: the canonical BabelQueue wire-envelope codec, contracts and dead-letter helpers."
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Muhammet Şafak", email = "info@muhammetsafak.com.tr" }]
keywords = ["queue", "polyglot", "microservices", "json", "envelope", "messaging"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
dependencies = []
[project.optional-dependencies]
# Optional runtime drivers + framework adapters — standard, zero-heavy-dep.
redis = ["redis>=4"]
amqp = ["pika>=1.3"]
celery = ["celery>=5"]
django = ["django>=4.2"]
dev = ["pytest>=7", "pytest-cov>=4", "mypy>=1.8", "ruff>=0.5"]
[project.urls]
Homepage = "https://babelqueue.com"
Source = "https://github.com/BabelQueue/babelqueue-python"
Issues = "https://github.com/BabelQueue/babelqueue-python/issues"
Changelog = "https://github.com/BabelQueue/babelqueue-python/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["src/babelqueue"]
[tool.ruff]
target-version = "py39"
line-length = 100
[tool.mypy]
# Lowest target mypy accepts; the package itself still supports Python 3.9 at
# runtime (requires-python >=3.9) and uses only 3.9-compatible typing.
python_version = "3.10"
files = ["src/babelqueue"]
ignore_missing_imports = true
[tool.coverage.run]
source = ["babelqueue"]
[tool.coverage.report]
show_missing = true
exclude_lines = ["pragma: no cover", "raise NotImplementedError", "if TYPE_CHECKING:"]