-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
53 lines (45 loc) · 1.13 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
[tool.poetry]
name = "django-filters-facet"
version = "0.1.0"
description = ""
authors = [ "Colin Copeland <[email protected]>" ]
packages = [ { include = "django_filters_facet", from = "src" } ]
[tool.poetry.dependencies]
python = "^3.8"
Django = ">= 3.2"
django-filter = ">= 22.1"
[tool.poetry.dev-dependencies]
pytest = "~7"
pre-commit = "~2.19.0"
black = "=22.6.0"
flake8 = "~4.0.1"
pytest-django = "^4.5.2"
factory-boy = "^3.2.1"
dj-database-url = "^0.5.0"
psycopg2 = "^2.9.3"
pytest-cov = "~=3.0.0"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target_version = [ 'py39' ]
[tool.coverage.run]
branch = true
source = ["django_filters_facet"]
[tool.coverage.report]
show_missing = true
fail_under = 70
[tool.isort]
py_version = 36
profile = "black"
multi_line_output = 3
include_trailing_comma = true
use_parentheses = true
line_length = 100
lines_between_types = 1
src_paths = [ "src", "tests" ]
[tool.pytest.ini_options]
testpaths = [ "tests" ]
django_find_project = false
pythonpath = [ ".", "src" ]
addopts = "--ds=tests.settings --cov --cov-config=pyproject.toml"