-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
82 lines (58 loc) · 1.24 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "ballotpreview"
version = "1.0"
description = "Share how you plan to vote in Michigan."
authors = ["Citizen Labs <[email protected]>"]
license = "GPLv3"
packages = [{ include = "app" }]
[tool.poetry.dependencies]
python = "3.11.10"
# Server
quart = "~0.19.7"
bugsnag = "^4.7.1"
# Images
pillow = "^10.3"
# Utilities
aiohttp = "^3.10.11"
markdown = "^3.4"
minilog = "^2.3"
# Production
gunicorn = "~22.0.0"
uvicorn = "~0.30.1"
# Testing
pomace = { version = "~0.12.7", optional = true }
[tool.poetry.group.dev.dependencies]
# Formatting
black = "~24.3"
isort = "~5.11"
djlint = "^1.34.1"
# Type Checking
mypy = "^1.10"
pylint = "~2.15"
rope = "*"
types-cryptography = "*"
types-markdown = "*"
# Testing
pytest = "^8.2.2"
pytest-asyncio = "*"
pytest-vcr = "*"
pytest-describe = "^2.0"
pytest-expecter = "^3.0"
pytest-cov = "^4.0"
pytest-watch = "^4.2"
time-machine = "*"
# Coverage
coveragespace = "^6.1"
coveralls = "*"
# Development
honcho = { git = "https://github.com/jacebrowning/honcho", branch = "support-importlib" }
livereload = "*"
[tool.poetry.extras]
e2e = ["pomace"]
[tool.black]
quiet = true
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"