-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 852 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
[project]
name = "codebase_django"
version = "0.1.0"
description = "My Django codebase."
authors = [
"Federico Cardozo <[email protected]>"
]
license = "GNU General Public License v3.0"
readme = "README.md"
python = "^3.8"
homepage = "https://github.com/fedecar94/my-django-codebase"
repository = "https://github.com/fedecar94/my-django-codebase"
documentation = "https://github.com/fedecar94/my-django-codebase"
keywords = ["codebase", "django", "rest", "api"]
classifiers = [
"Topic :: Software Development"
]
# Requirements
[dev-dependencies]
black = { version = "^21.6b0", python = "^3.8" }
[tool.black]
line-length = 120
target_version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''