-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
77 lines (66 loc) · 1.38 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
[project]
name = "kirppu"
description = "Second-hand sales POS and vendor signup for conventions"
version = "0"
requires-python = ">=3.11"
dependencies = [
"django-environ~=0.11.0",
"django-ipware~=5.0.0",
"django-ratelimit~=4.0",
"django~=5.0.0",
"pillow~=10.0",
"pubcode~=1.1.0",
"mistune~=3.0.0",
"whitenoise~=6.5.0",
]
[project.optional-dependencies]
oauth = [
"requests~=2.30",
"requests-oauthlib~=2.0.0",
"oauthlib~=3.2.0",
]
production = [
"gunicorn~=22.0",
"psycopg[c]~=3.1.0",
]
dev = [
"factory-boy~=3.3.0",
"Faker~=19.0",
"pytest~=7.4.0",
"pytest-django~=4.5.0",
"pytest-env~=1.0.0",
"pytest-cov~=4.0",
"pip-tools~=7.3",
]
[tool.isort]
profile = "black"
atomic = true
indent = 4
line_length = 120
no_sections = false
skip_glob = [
"*/migrations/*",
"/node_modules*/*",
"/private/*",
"/KirppuVenv*/*",
"/venv*/*",
]
wrap_length = 120
[tool.pytest.ini_options]
addopts = "--tb=short"
norecursedirs = "*.egg .* .git build dist node_modules* venv KirppuVenv* {arch} private kompassi*"
DJANGO_SETTINGS_MODULE = "kirppu_project.settings"
[build-system]
requires = [
"setuptools>=61.0.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = [
"kirppu.*",
"kirppu_project",
"kirppuauth.*",
"kompassi_crowd",
"kompassi_oauth2",
]