1
Fork 0
This repository has been archived on 2024-07-16. You can view files and clone it, but cannot push or open issues or pull requests.
wagtail-draftail-snippet/pyproject.toml

25 lines
680 B
TOML
Raw Normal View History

2019-12-29 20:54:54 +00:00
[tool.poetry]
name = "wagtail-draftail-snippet"
2022-02-17 21:20:10 +00:00
version = "0.4.0"
2020-01-08 04:41:21 +00:00
description = "Associate RichTextBlock text content to a snippet model."
2020-01-17 19:10:32 +00:00
authors = ["Parbhat Puri <me@parbhatpuri.com>", "Adam Hill <ahill@fool.com>"]
2020-01-08 04:41:21 +00:00
repository = "https://github.com/themotleyfool/wagtail-draftail-snippet"
readme = "README.md"
2020-01-17 21:08:28 +00:00
license = "BSD-3-Clause"
2019-12-29 20:54:54 +00:00
[tool.poetry.dependencies]
2020-01-08 04:41:21 +00:00
python = "^3.6"
wagtail = "^2.5"
2019-12-29 20:54:54 +00:00
[tool.poetry.dev-dependencies]
pytest = "^3.0"
2020-02-15 03:23:14 +00:00
pytest-django = "^3.8"
pytest-pythonpath = "^0.7.3"
wagtail-factories = "^2.0"
2020-04-07 16:11:53 +01:00
flake8 = "^3.7.9"
black = {version = "^19.10b0", allow-prereleases = true}
2019-12-29 20:54:54 +00:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"