Skip to content

Commit

Permalink
Fix packaging issue not including migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeburden committed Feb 12, 2019
1 parent f9dac5e commit 5908b0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import find_packages, setup


name = "django-zengo"
Expand Down Expand Up @@ -30,10 +30,10 @@
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
version="1.0.3",
version="1.0.4",
license="MIT",
url=url,
packages=["zengo"],
packages=find_packages(exclude=["tests", "testproj"]),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
Expand Down

0 comments on commit 5908b0a

Please sign in to comment.