-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.2 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-trumbowyg"
version = "2.0.1"
authors = [
{ name="sandino", email="[email protected]" },
]
description = "Trumbowyg (WYSIWYG editor) integration app for Django admin."
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Framework :: Django",
"License :: OSI Approved :: MIT License",
]
[project.urls]
"Homepage" = "https://github.com/sandino/django-trumbowyg"
"Bug Tracker" = "https://github.com/sandino/django-trumbowyg/issues"
[tool.isort]
profile = "black"
multi_line_output = 3
extend_skip = ["runtests.py", "setup.py"]
skip_gitignore = true
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
src_paths = ["trumbowyg", "tests"]
[tool.black]
target-version = ["py39"]
exclude = '''
(
(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.mypy_cache
| \.tox
| \.venv
| runtests.py
| setup.py
)
)
'''