Skip to content

Commit

Permalink
setup.py can find all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Dash committed Apr 27, 2012
1 parent 9735a63 commit 2b4cddb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(
name='tower',
Expand All @@ -10,7 +10,7 @@
author_email='wclouser@mozilla.com',
url='http://github.com/clouserw/tower',
license='BSD',
packages=['tower'],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
Expand Down

0 comments on commit 2b4cddb

Please sign in to comment.