forked from lucyparsons/OpenOversight
-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
57 lines (54 loc) · 1.18 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
[tool.poetry]
name = "openoversight"
version = "1.8.0"
description = ""
authors = ["OrcaCollective"]
license = "GPLv3"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
authlib = "1.3.1"
bootstrap-flask = "2.4.0"
boto3 = "1.35.50"
cachetools = "5.3.3"
email-validator = "2.2.0"
flask = "3.0.3"
flask-compress = "1.14"
flask-limiter = "3.8.0"
flask-login = "0.6.3"
flask-mail = "0.9.1"
flask-migrate = "4.0.7"
flask-sitemap = "0.4.0"
flask-sqlalchemy = "3.0.3"
flask-wtf = "1.2.1"
google-api-python-client = "2.127.0"
gunicorn = "22.0.0"
pillow = "10.3.0"
psycopg2-binary = "2.9.9"
python-dateutil = "2.9.0.post0"
sqlalchemy = "2.0.32"
us = "3.1.1"
wtforms = "3.1.2"
wtforms-sqlalchemy = "0.3"
[tool.poetry.group.dev.dependencies]
faker = "28.1.0"
flake8 = "7.1.1"
ipython = "^8.26.0"
mypy = "1.10.1"
myst-parser = "3.0.1"
pandas = "^2.2.1"
pre-commit = "4.0.1"
pytest = "8.1.1"
pytest-cov = "5.0.0"
pytest-env = "1.0.1"
pytest-flake8 = "1.1.1"
pytest-sugar = "1.0.0"
pytest-xdist = "3.2.1"
selenium = "4.17.2"
sphinx = "7.3.7"
sphinx-autobuild = "2024.2.4"
webdriver-manager = "4.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"