Skip to content

Commit

Permalink
Fix Python 2.7 install (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
loicteixeira authored Nov 20, 2017
1 parent 0d5bceb commit 973e571
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import os

from setuptools import setup
from setuptools import find_packages, setup

from wagtailgmaps import __version__

Expand Down Expand Up @@ -39,7 +39,7 @@
setup(
name='wagtailgmaps',
version=__version__,
packages=['wagtailgmaps'],
packages=find_packages(),
include_package_data=True,
license='MIT',
description='Google Maps widget for address fields in Wagtail',
Expand Down

0 comments on commit 973e571

Please sign in to comment.