37 lines
703 B
TOML
37 lines
703 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "dual-queue-services"
|
|
version = "0.1.0"
|
|
description = "Async dual queue system with Redis Streams and SQLite persistence"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
authors = [
|
|
{ name = "Berkay Karatay", email = "karatay.berkay@gmail.com" }
|
|
]
|
|
dependencies = [
|
|
"nats-py>=2.6.0",
|
|
"prometheus-client>=0.20.0",
|
|
"uvloop>=0.19.0"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.4",
|
|
"black>=23.0",
|
|
"isort>=5.12"
|
|
]
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
target-version = ["py311"]
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["app"]
|
|
include = ["app*"]
|