-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.05 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
[tool.poetry]
name = "django-materialized-view"
version = "0.1.2"
description = "Materialized View support for the Django framework"
authors = ["Farruh Sheripov <farruh.sheripov@muehlemann-popp.ch>"]
readme = "README.md"
packages = [{include = "django_materialized_view"}]
[tool.poetry.dependencies]
python = "^3.9"
django = "^4.1.7"
[tool.poetry.dev-dependencies]
pytest-django = "^4.5.2"
pytest-mock = "^3.10.0"
pytest-subtests = "^0.10.0"
factory-boy = "^3.2.1"
pre-commit = "^3.1.1"
pytest = "^7.2.2"
psycopg2-binary = "^2.9.5"
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "testproject.settings"
testpaths = "tests"
[tool.black]
line-length = 120
exclude = ".tox .venv /static/*"
[tool.isort]
profile = "black"
py_version = 310
line_length = 120
[tool.mypy]
python_version = "3.10"
warn_unused_configs = true
warn_unused_ignores = true
no_warn_no_return = true
show_column_numbers = true
show_error_codes = true
pretty = true
ignore_missing_imports = true