commit 7460187502926e8d89ee5765c7931ea4e435df95 Author: Adam Hill Date: Sun Dec 29 15:54:54 2019 -0500 Initial commit. 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'