-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
558a7e1
commit 9363292
Showing
4 changed files
with
40 additions
and
0 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
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` |
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 |
---|---|---|
@@ -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 |
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 |
---|---|---|
@@ -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.