From 7460187502926e8d89ee5765c7931ea4e435df95 Mon Sep 17 00:00:00 2001 From: Adam Hill Date: Sun, 29 Dec 2019 15:54:54 -0500 Subject: [PATCH] Initial commit. --- README.rst | 0 pyproject.toml | 15 +++++++++++++++ wagtail_draftail_snippet/__init__.py | 1 + 3 files changed, 16 insertions(+) create mode 100644 README.rst create mode 100644 pyproject.toml create mode 100644 wagtail_draftail_snippet/__init__.py diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9911cbf --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "wagtail-draftail-snippet" +version = "0.1.0" +description = "" +authors = ["Adam Hill "] + +[tool.poetry.dependencies] +python = "^2.7" + +[tool.poetry.dev-dependencies] +pytest = "^3.0" + +[build-system] +requires = ["poetry>=0.12"] +build-backend = "poetry.masonry.api" diff --git a/wagtail_draftail_snippet/__init__.py b/wagtail_draftail_snippet/__init__.py new file mode 100644 index 0000000..b794fd4 --- /dev/null +++ b/wagtail_draftail_snippet/__init__.py @@ -0,0 +1 @@ +__version__ = '0.1.0'