-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 917 Bytes
/
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
[tool.poetry]
name = "drf-dropdown"
version = "0.0.0"
description = "Dropdown population implementation for Django REST Framework"
authors = ["Preeti Yuankrathok <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/earthpyy/drf-dropdown"
keywords = ["django", "restframework", "drf", "dropdown"]
packages = [
{ include = "dropdown" },
]
[tool.poetry.dependencies]
python = "^3.8"
djangorestframework = "^3.11.0"
django = ">=3.1"
[tool.poetry.dev-dependencies]
pre-commit = "^2.15.0"
pytest = "^6.2.5"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[tool.yapf]
based_on_style = 'google'
column_limit = 140
coalesce_brackets = true
dedent_closing_brackets = true
split_arguments_when_comma_terminated = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"