Skip to content

Commit

Permalink
Initial project setup
Browse files Browse the repository at this point in the history
  • Loading branch information
emilytoppm committed Jun 17, 2020
1 parent 558a7e1 commit 9363292
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# wagtail-image-import
Adds bulk image import from Google Drive to the Wagtail Admin

## Installation

Add to `INSTALLED_APPS` in your settings file above `wagtail.admin`
12 changes: 12 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[flake8]
# E501: Line too long
ignore = E501
exclude = setup.py
max-line-length = 120

[isort]
line_length=100
multi_line_output=4
skip=migrations,
known_first_party=wagtail_image_import
known_third_party=wagtail,willow,modelcluster,taggit,django,unidecode,bs4,pytz,PIL
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="wagtail_image_import",
version="0.0.1",
author="Jacob Topp-Mugglestone",
author_email="[email protected]",
description="Adds bulk image imports from Google Drive to the Wagtail Admin",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jacobtoppm/wagtail_draftail_anchors",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=["wagtail>=2.9",],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)
Empty file.

0 comments on commit 9363292

Please sign in to comment.