-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1016 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1016 Bytes
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 = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "daebus"
version = "0.0.31"
authors = [
{ name="Tom West", email="tom@bambo.co" },
]
description = "A lightweight framework for building Python background services with a Flask-like API, enabling seamless inter-service communication via Redis pub/sub."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers"
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dependencies = [
"redis>=6.0.0",
"apscheduler>=3.11.0",
"websockets>=15.0.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.5",
"pytest-mock>=3.14.0",
"pytest-cov>=6.1.1",
"bump2version>=1.0.1",
"codecov>=2.1.13",
"flake8>=7.2.0",
"pytest-asyncio>=0.26.0",
]
[project.urls]
Homepage = "https://github.com/twestos/daebus"
Issues = "https://github.com/twestos/daebus/issues"