Skip to content

Commit

Permalink
Fixed setup.py issue
Browse files Browse the repository at this point in the history
  • Loading branch information
akiraakaishi committed Apr 20, 2015
1 parent 61e6fca commit 79edb71
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
from setuptools import setup
from setuptools import setup, find_packages

with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
Expand All @@ -11,7 +11,7 @@
setup(
name='django-taggit-forms',
version='.'.join(map(str, taggit_forms.VERSION)),
packages=['taggit_forms'],
packages=find_packages(exclude=['tests*']),
include_package_data=True,
license='MIT License',
description='Tag-creation forms for django-taggit',
Expand Down
2 changes: 1 addition & 1 deletion taggit_forms/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = (0, 1, 0)
VERSION = (0, 1, 1)

0 comments on commit 79edb71

Please sign in to comment.