-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from wagtail-packages/release
Release
- Loading branch information
Showing
12 changed files
with
109 additions
and
1,380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,72 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "wagtail-f-richtext" | ||
version = "1.0.0" | ||
version = "1.1.0" | ||
description = "An alternative Wagtail richtext filter that applies classes or styles to rich text HTML content." | ||
authors = ["Nick Moreton <[email protected]>"] | ||
license = "MIT" | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
readme = "README.md" | ||
keywords = ["wagtail", "richtext", "filter", "html", "class", "style"] | ||
authors = [ | ||
{name = "Nick Moreton", email = "[email protected]"} | ||
] | ||
license = {file = "LICENSE"} | ||
classifiers = [ | ||
"Development Status :: 5 Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"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", | ||
"Framework :: Django", | ||
"Framework :: Django :: 3.2", | ||
"Framework :: Django :: 4.0", | ||
"Framework :: Django :: 4.1", | ||
"Framework :: Django :: 4.2", | ||
"Framework :: Django :: 5.0", | ||
"Framework :: Wagtail", | ||
"Framework :: Wagtail :: 4", | ||
"Framework :: Wagtail :: 5", | ||
"Framework :: Wagtail :: 6", | ||
] | ||
requires-python = ">=3.9" | ||
dependencies =[ | ||
"Wagtail>=4.1", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
wagtail = "^4.1" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
black = "^23.1.0" | ||
tox = "^3.26.0" | ||
coverage = "^7.1.0" | ||
|
||
[tool.poetry.group.dev.dependencies.pymarkdownlnt] | ||
version = ">=0.9.7" | ||
python = "^3.8.0" | ||
[project.optional-dependencies] | ||
development = [ | ||
"black==24.4.2", | ||
"flake8==7.1.0", | ||
"isort==5.13.0", | ||
] | ||
testing = [ | ||
"coverage" | ||
] | ||
|
||
[tool.poetry.group.dev.dependencies.flake8] | ||
version = ">=6.0.0" | ||
python = "^3.8.1" | ||
[project.urls] | ||
Repository = "https://github.com/wagtail-packages/wagtail-f-richtext" | ||
Issues = "https://github.com/wagtail-packages/wagtail-f-richtext/issues" | ||
Changelog = "https://github.com/wagtail-packages/wagtail-f-richtext/blob/release/CHANGELOG.md" | ||
|
||
[tool.poetry.group.dev.dependencies.isort] | ||
version = ">=5.0.0" | ||
python = "^3.8" | ||
|
||
[tool.poetry.group.dev.dependencies.pre-commit] | ||
version = ">=3.0.0" | ||
python = "^3.8" | ||
[tool.black] | ||
line-length = 88 | ||
target-version = ['py39'] | ||
include = '\.pyi?$' | ||
exclude = ''' | ||
/( | ||
\.eggs | ||
| \.git | ||
| \.hg | ||
| \.mypy_cache | ||
| \.tox | ||
| \.venv | ||
| _build | ||
| buck-out | ||
| build | ||
| dist | ||
)/ | ||
''' | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
[tool.isort] | ||
profile = "black" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +0,0 @@ | ||
default_app_config = "wagtail_f_richtext.apps.WagtailFRichtextAppConfig" | ||
|
||
|
||
VERSION = (1, 0, 0) | ||
__version__ = ".".join(map(str, VERSION)) | ||