-
-
Notifications
You must be signed in to change notification settings - Fork 316
/
pyproject.toml
82 lines (76 loc) · 2.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
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "django-tinymce"
version = "4.1.0"
description = """
A Django application that contains a widget to render a
form field as a TinyMCE editor."""
readme = "README.rst"
authors = [
{name = "Aljosa Mohorovic", email = "[email protected]"},
]
maintainers = [
{name = "Rémy Hubscher", email = "[email protected]"},
{name = "Claude Paroz", email = "[email protected]"},
]
license = {text = "MIT License"}
requires-python = ">=3.8"
dependencies = [
"django>=3.2",
]
keywords = ["django", "widget", "tinymce"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/jazzband/django-tinymce"
Documentation = "https://django-tinymce.readthedocs.org/"
Changelog = "https://github.com/jazzband/django-tinymce/blob/master/CHANGELOG.rst"
[tool.black]
line-length = 99
skip-numeric-underscore-normalization = true
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
/(
\.git
| tmp
| conf
| website/documentation
| pos/frontend
)/
'''
[tool.isort]
force_grid_wrap = 0
include_trailing_comma = true
known_first_party = 'lib,model,presenters'
known_third_party = ["django"]
line_length = 99
multi_line_output = 3
skip_glob = ''
use_parentheses = true
combine_as_imports = true
# If set, imports will be sorted within their section independent to the import_type.
force_sort_within_sections = true
[tool.coverage.run]
source = ["tinymce"]
branch = true