-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (67 loc) · 1.4 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
[tool.poetry]
name = "photocrowd_tech_test"
version = "0.1.0"
description = ""
authors = ["Tom Morledge <[email protected]>"]
[tool.black]
skip-string-normalization = true
target-version = ["py38"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
| venv
)/
'''
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--ds=config.settings.test --reuse-db"
python_files = ["tests.py", "test_*.py"]
testpaths = [
"leaderboard"
]
[tool.poetry.dependencies]
python = "^3.8"
Django = "3.1.13"
django-environ = "^0.7.0"
djangorestframework = "^3.12.4"
django-cors-headers = "^3.10.0"
whitenoise = "^5.3.0"
argon2-cffi = "^21.1.0"
pytz = "^2021.3"
django-filter = "^21.1"
django-utils-six = "^2.0"
psycopg2-binary = "^2.9.1"
[tool.poetry.dev-dependencies]
Werkzeug = "^2.0.2"
mypy = "^0.910"
django-stubs = "^1.9.0"
pytest = "^6.2.5"
pytest-sugar = "^0.9.4"
flake8 = "3.9.2"
flake8-isort = "^4.0.0"
coverage = "^6.0.1"
black = "^21.9b0"
pylint-django = "^2.4.4"
pre-commit = "^2.15.0"
factory-boy = "^3.2.0"
django-debug-toolbar = "^3.2.2"
django-extensions = "^3.1.3"
pytest-django = "^4.4.0"
django-coverage-plugin = "^2.0.1"
Sphinx = "^4.2.0"
sphinxcontrib-django = "^0.5.1"
sphinx-autobuild = "^2021.3.14"
bandit = "^1.7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"