-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
61 lines (53 loc) · 1.33 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
[tool.poetry]
name = "crashserver"
version = "0.3.6"
authors = ["James <jameskr97@gmail.com>"]
description = "A Google Crashpad server, made for open source projects"
homepage = "https://github.com/jameskr97/CrashServer"
repository = "https://github.com/jameskr97/CrashServer"
readme = "README.md"
include = ["res", "config"]
[tool.poetry.dependencies]
python = "^3.10.1"
boto3 = "^1.20.24"
click = "^8.0.1"
dynaconf = "^3.1.5"
email-validator = "^1.1.3"
Flask-Babel = "^2.0.0"
Flask-DebugToolbar = "^0.13.0"
Flask-Limiter = "^1.4"
Flask-Migrate = "^3.1.0"
Flask = "^2.0.1"
Flask_Login = "^0.5.0"
Flask_SQLAlchemy = "^2.5.1"
Flask_WTF = "^0.15.1"
gevent = "^21.8.0"
gunicorn = "^20.1.0"
humanize = "^3.11.0"
loguru = "^0.5.3"
natsort = "^8.0.0"
psycopg2-binary = "^2.9.1"
python-magic = "^0.4.24"
requests = "^2.26.0"
rq = "^1.10.0"
SQLAlchemy = "^1.4.22"
SQLAlchemy_Utils = "^0.37.8"
toml = "^0.10.2"
Werkzeug = "2.0.1"
WTForms = "^2.3.3"
[tool.poetry.dev-dependencies]
black = "^21.12b0"
pytest = "^6.2.5"
minio = "^7.1.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 180
[tool.pytest.ini_options]
log_cli = true
log_cli_level = 10
minversion = "6.0"
addopts = ""
testpaths = ["tests"]
filterwarnings = ["ignore::DeprecationWarning:(flask_limiter|jinja2|flask_debugtoolbar):"]