-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (76 loc) · 2.08 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
82
83
84
85
[tool.black]
exclude = '''
/(
| migrations
)/
'''
line-length = 119
target-version = ['py312']
[tool.isort]
line_length = 119
profile = "black"
skip_glob = ["*/migrations/*"]
[tool.ruff]
line-length = 119
target-version = "py312"
exclude = ["*/migrations/*"]
[tool.bandit]
exclude_dirs = ["tests.py", "test_*.py", "*_tests.py"]
skips = ["B101", "B601"]
[tool.coverage]
[tool.coverage.run]
omit = ["*/migrations/*", "*asgi.py", "*wsgi.py", "*manage.py", "*conftest.py"]
concurrency = ["greenlet"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "core.settings"
addopts = "--cov-report term-missing --strict-markers --reuse-db"
python_files = ["tests.py", "test_*.py", "*_tests.py"]
xfail_strict = true
[tool.poetry]
authors = ["Evgeni Sautin <[email protected]>"]
description = "Find the skills you need to get a job in IT"
license = "MIT"
name = "SkillHunter"
version = "3.0.0"
[tool.poetry.dependencies]
Django = "^5.0"
Faker = "^20.1.0"
Jinja2 = "^3.1.2"
boto3 = "^1.33.8"
celery = { extras = ["pytest"], version = "^5.3.6" }
django-csp = "^3.7"
django-debug-toolbar = "^4.2.0"
django-linear-migrations = "^2.12.0"
django-otp = "^1.3.0"
django-permissions-policy = "^4.18.0"
django-storages = "^1.14.2"
djangorestframework = "^3.14.0"
djangorestframework-simplejwt = "^5.3.1"
drf-spectacular = "^0.26.5"
gunicorn = "^21.2.0"
pypdf = "^3.17.1"
python = "^3.12"
python-multipart = "^0.0.6"
python-decouple = "^3.8"
qrcode = "^7.4.2"
redis = { extras = ["hiredis"], version = "^5.0.1" }
beautifulsoup4 = { extras = ["lxml"], version = "^4.12.2" }
playwright = "^1.40.0"
sentry-sdk = "^1.38.0"
uvicorn = { extras = ["standard"], version = "^0.23.2" }
psycopg = { extras = ["binary", "pool", "c"], version = "^3.1.14" }
tenacity = "^8.2.3"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
black = "^23.11.0"
isort = "^5.12.0"
ruff = "^0.1.7"
ipython = "^8.18.1"
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
pytest-django = "^4.7.0"
pytest-randomly = "^3.15.0"
pytest-xdist = { extras = ["psutil"], version = "^3.5.0" }
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]