-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (44 loc) · 993 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
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "base-common-drf"
version = "0.4"
description = "Django app with common implementations for base Angewandte projects using Django REST Framework"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache License, Version 2.0"}
classifiers = [
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
dependencies = [
"django>=4.2",
"djangorestframework>=3.13",
"drf_spectacular>=0.26",
]
[tool.setuptools]
package-dir = {"" = "src"}
py-modules = ["base_common_drf"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
skip-string-normalization = true
[tool.commitizen]
name = "cz_base"