-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (76 loc) · 1.75 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[virtualenvs]
create = true
in-project = true
[tool.commitizen]
version = "1.0.9"
tag_format = "v$major.$minor.$patch$prerelease"
version_files = [
"pyproject.toml:version",
"drf_operation_log/__init__.py"
]
[tool.poetry]
name = "drf-operation-log"
version = "1.0.9"
description = "Operation log for drf serializers."
authors = ["aiden_lu <aiden_lu@wochacha.com>"]
keywords = ["django", "restframework", "operationlog"]
homepage = "https://github.com/anyidea/drf-operation-log"
repository = "https://github.com/anyidea/drf-operation-log"
license = "Apache-2.0"
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0.0"
Django = ">=3.2"
djangorestframework = ">=3.13.1"
[tool.poetry.group.dev.dependencies]
tox = ">=3.27.0"
pre-commit = ">=2.19.0"
virtualenv = ">=20.16.5"
pip = ">=22.3.1"
twine = ">=4.0.1"
toml = ">=0.10.2"
commitizen = ">=2.37.0"
flake8 = "^4.0.1"
pytest = "^6.2.5"
flake8-docstrings = "^1.6.0"
[tool.poetry.group.doc.dependencies]
mkdocs = ">=1.4.2"
mkdocs-material = ">=8.5.9"
mkdocstrings = { version=">=0.19.0", extras=["python"] }
mkdocs-awesome-pages-plugin = ">=2.8.0"
mkdocs-include-markdown-plugin = ">=3.9.1"
mkdocs-static-i18n = ">=0.50"
mkdocs-material-extensions = ">=1.1.1"
pymdown-extensions = "^9.8"
pygments = "^2.13.0"
mkdocs-redirects = "^1.2.0"
[tool.black]
line-length = 89
target-version = ['py38', 'py39']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
| migrations
)/
'''
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"