forked from leanprover-community/queueboard-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 804 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 804 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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "queueboard-core"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"celery>=5.5.3",
"django>=5.2.6",
"djangorestframework>=3.15.2",
"gunicorn>=21.2.0",
"whitenoise>=6.8.2",
"psycopg[binary]>=3.2.1",
"python-dateutil>=2.9.0.post0",
"redis>=6.4.0",
"zulip>=0.9.0",
"requests>=2.31.0",
"django-celery-results>=2.5.1",
"cryptography>=46.0.4",
]
[dependency-groups]
dev = ["ruff>=0.13.1"]
[tool.hatch.build.targets.wheel]
packages = ["src/queueboard"]
[tool.hatch.build]
include = [
"src/queueboard/**/*.py",
"src/queueboard/graphql/**/*",
"src/queueboard/static/**/*",
]