-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (59 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
64 lines (59 loc) · 1.26 KB
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
[tool.poetry]
name = "django-belt"
version = "1.10.0"
description = "Simple package with some utilities for Django."
readme = "README.rst"
authors = ["Marcos Gabarda <hey@marcosgabarda.com>"]
license = "MIT"
homepage = "https://github.com/marcosgabarda/django-belt"
packages = [{ include = "belt" }]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.10"
django = ">=3.0.0"
django-model-utils = "^4.1.0"
djangorestframework = ">=3.12.0"
django-filter = "^21.1"
single-source = ">=0.3.0"
[tool.poetry.group.dev.dependencies]
pylint = "^2.17.5"
pytest = "^7.4.0"
black = "^23.7.0"
factory_boy = "^3.2.1"
django-test-plus = "=2.2.1"
pytest-django = "^4.5.2"
pytest-cov = "^4.1.0"
mypy = "^1.5.1"
isort = "^5.12.0"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| node_modules
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"