Skip to content

Commit

Permalink
Really really fix packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Jan 25, 2012
1 parent 151c4c4 commit a19c522
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -13,7 +13,7 @@
>>> ) >>> )
""" """


from setuptools import setup from setuptools import setup, find_packages


setup( setup(
name='notsetuptools', name='notsetuptools',
Expand All @@ -22,6 +22,6 @@
long_description=__doc__, long_description=__doc__,
author='David Cramer', author='David Cramer',
author_email='dcramer@gmail.com', author_email='dcramer@gmail.com',
packages={'': 'src'}, packages=find_packages(),
zip_safe=False, zip_safe=False,
) )

0 comments on commit a19c522

Please sign in to comment.