-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 822 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
[tool.poetry]
name = "postgres-job-queue"
version = "1.0.0"
description = "Example of a job queue with Postgres and Quart"
license = "None"
authors = [
"Andrei Taranchenko <drey10@gmail.com>"
]
readme = 'README.md'
repository = "https://github.com/papito/postgres-job-queue"
homepage = "https://renegadeotter.com"
keywords = ['postgres', 'jobs', 'queue']
[tool.poetry.dependencies]
python = "^3.11"
toml = "^0.10.2"
siftlog_py = "0.9.5"
python-dotenv = "0.20.0"
quart = "0.18.3"
psycopg2-binary = "^2.9.9"
pydantic = "^2.5.2"
Werkzeug = "2.2.2"
types-psycopg2 = "^2.9.21.18"
asyncpg = "^0.29.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.2"
pytest-asyncio = "^0.20.3"
mypy = "^0.991"
flake8 = "^3.9.2"
isort = "^5.9.1"
black = "22.3.0"
flake8-print = "^5.0.0"
freezegun = "^1.2.2"
types-toml = "^0.1.3"