forked from svthalia/concrexit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (63 loc) · 1.74 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
[tool.poetry]
name = "concrexit"
version = "37.0"
description = "New new Thalia website, now with extra Django."
authors = ["Thalia Technicie <[email protected]>"]
license = "AGPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.7"
django-localflavor = "3.1"
freezegun = "1.1.0"
bleach = "3.3.1"
django-tinymce4-lite = "1.8.0"
djangorestframework = "3.12.4"
django-ical = "1.8.0"
django-libsass = "0.8.0"
python-magic = "0.4.24"
Django = "3.2.6"
Pillow = "8.3.1"
django-compressor = "2.4.1"
psycopg2-binary = "2.9.1"
bcrypt = "3.2.0"
argon2_cffi = "20.1.0"
uWSGI = "2.0.19.1"
django-bootstrap4 = "3.0.1"
firebase-admin = "5.0.1"
sentry-sdk = "1.3.1"
django-sendfile2 = "0.6.0"
django-queryable-properties = "^1.6.1"
# docs requirements
recommonmark = { version = "0.7.1", optional = true }
sphinx = { version = "4.1.2", optional = true }
google-api-python-client = "2.15.0"
django-oauth-toolkit = "^1.3.2"
django-cors-headers = "^3.5.0"
PyYAML = "^5.3.1"
django-debug-toolbar = "^3.1.1"
pydocstyle = "^6.0.0"
django-admin-autocomplete-filter = "^0.7"
[tool.poetry.extras]
docs = ["recommonmark", "sphinx"]
[tool.poetry.dev-dependencies]
django-template-check = "0.4.0"
factory_boy = "3.2.0"
pydenticon = "0.3.1"
Faker = "8.10.3"
coverage = {extras = ["toml"], version = "^5.0.3"}
black = "19.10b0"
pylint = "^2.6.0"
pylint-django = "^2.3.0"
[tool.coverage.run]
branch = true
source = ["website"]
omit = ["website/manage.py", "website/thaliawebsite/wsgi.py", "website/thaliawebsite/settings.py", "website/*/migrations/*", "website/*/test*"]
[tool.coverage.report]
precision = 2
skip_covered = true
show_missing = true
fail_under = 65.0
[tool.black]
exclude = '(/(\.eggs|\.git|\.tox)/|migrations)'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"