8000 update setup.py to fix south problem · mauler/django-elastic-transcoder@4c5e1e6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4c5e1e6

Browse files
committed
update setup.py to fix south problem
1 parent 7a3e741 commit 4c5e1e6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dj_elastictranscoder/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.9'
1+
__version__ = '0.9.1'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22
from dj_elastictranscoder import __version__
33

44

@@ -12,7 +12,7 @@
1212
url='http://github.com/StreetVoice/django-elastic-transcoder',
1313
license='MIT',
1414
test_suite='runtests.runtests',
15-
packages=['dj_elastictranscoder',],
15+
packages=find_packages(),
1616
include_package_data=True,
1717
zip_safe=False,
1818
install_requires = [

0 commit comments

Comments
 (0)
0