This repository has been archived by the owner on Aug 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
81 lines (73 loc) · 1.75 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
[tool.poetry]
name = "inloop"
version = "0.1.0"
description = "A web application to manage online programming assignments"
authors = [
"Martin Morgenstern <[email protected]>",
"Philipp Matthes <[email protected]>"
]
license = "GPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.8"
defusedxml = "^0.7.1"
Django = "^4.0.3"
django-constance = "^2.6.0"
django-environ = "^0.10.0"
django-extensions = "^3.1.0"
django-redis = "^5.0.0"
django-registration = "^3.1"
django-widget-tweaks = "^1.4.5"
gunicorn = "^20.0.4"
huey = "^2.3.0"
Markdown = "^3.3.3"
redis = "^4.2.2"
setproctitle = "^1.1.10"
psycopg = {extras = ["binary"], version = "^3.1.8"}
[tool.poetry.group.dev.dependencies]
coverage = "^6.2"
django-debug-toolbar = "^3.2"
django-html-validator = "^0.5.1"
flake8 = "^4.0.1"
flake8-docstrings = "^1.5.0"
honcho = "^1.0.1"
ipython = "^8.10.0"
isort = "~5.8.0"
flake8-isort = "~4.1.1"
black = "^22.3.0"
flake8-black = "^0.3.2"
flake8-bugbear = "^22.3.23"
flake8-annotations = "^2.4.1"
pytype = {version = "*", python = ">=3.7,<3.9"}
typeguard = "^2.10.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.isort]
profile = "black"
line_length = 99
skip_gitignore = true
skip = ["migrations"]
known_first_party = "inloop"
known_django = "django"
known_tests = "tests"
sections = [
"FUTURE",
"STDLIB",
"DJANGO",
"THIRDPARTY",
"FIRSTPARTY",
"TESTS",
"LOCALFOLDER"
]
[tool.coverage.run]
branch = true
source = ["inloop"]
data_file = ".coverage.dat"
[tool.coverage.report]
omit = ["*/migrations/*", "inloop/urls_debug.py"]
[tool.coverage.html]
directory = "htmlcov"
title = "INLOOP test coverage report"
[tool.black]
line-length = 99
exclude = '(/(\.git|\.nox|\.venv|media)|migrations)/'