-
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) · 806 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 806 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
41
[project]
name = "queue-server"
version = "1.0.0"
description = "An API queuing server based on the Flowdacity Queue Engine library."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"flowdacity-queue>=1.0.0",
"httpx>=0.28.1",
"msgpack>=1.1.2",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"redis[hiredis]>=7.1.0",
"starlette>=0.50.0",
"ujson>=5.11.0",
"uvicorn>=0.38.0",
]
[dependency-groups]
dev = [
"pytest>=9.0.1",
"pytest-cov>=7.0.0",
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
[tool.hatch.build.targets.wheel]
# package is directly in the project root
packages = ["fq_server"]
[tool.hatch.build.targets.sdist]
include = [
"fq_server",
"README.md",
"LICENSE.txt",
"asgi.py",
"docs",
"Makefile",
]