-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (43 loc) · 1.1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "brq"
description = "brq"
keywords = ["brq"]
requires-python = ">=3.10"
dependencies = [
"pydantic>=2, <3",
"redis>=5.0, <6",
"loguru",
"click",
"pydantic-settings",
"anyio",
]
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
[project.optional-dependencies]
browser = ["fastapi", "uvicorn[standard]"]
test = ["pytest", "docker", "pytest-asyncio", "pytest-cov", "brq[browser]"]
docs = ["Sphinx", "pydata-sphinx-theme", "sphinx-click", "autodoc_pydantic"]
[[project.authors]]
name = "wh1isper"
email = "[email protected]"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
brq = "brq.cli:cli"
[project.license]
text = "BSD 3-Clause License"
[project.urls]
Source = "https://github.com/b-scheduler/brq"
[tool.check-manifest]
ignore = [".*"]
[tool.hatch.version]
path = "brq/__init__.py"