Skip to content

Commit

Permalink
Bumped version; Find all packages
Browse files Browse the repository at this point in the history
so that django finds management command
  • Loading branch information
saulshanabrook committed Jun 5, 2013
1 parent 4d4e775 commit 59dc8a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
v0.2.3, 06/04/13 -- Add all packages so that Django finds management command
v0.2.2, 06/04/13 -- Zip safe on setup.py so Django finds management command
v0.2.1, 05/29/13 -- Proper progressive and optomize support
v0.2.0, 05/29/13 -- Don't save with optomize either, also encounters same error
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from setuptools import setup
from setuptools import setup, find_packages


setup(
name='django-simpleimages',
version='0.2.2',
version='0.2.3',
author='Saul Shanabrook',
author_email='s.shanabrook@gmail.com',
packages=['simpleimages', 'simpleimages.test'],
packages=find_packages(),
url='https://www.github.com/saulshanabrook/django-simpleimages',
license='LICENSE.txt',
description='Opinionated Django image transforms on models',
Expand Down

0 comments on commit 59dc8a5

Please sign in to comment.