Skip to content

Commit

Permalink
fix for installing with setuptools. the find_packages fix did not wor…
Browse files Browse the repository at this point in the history
…k.. should have tested :)
  • Loading branch information
seanbrant authored and BonsaiDen committed Sep 11, 2010
1 parent 183e55a commit a6eb544
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, find_packages
from setuptools import setup

setup(
name='twitter-text-python',
Expand All @@ -9,7 +9,7 @@
author_email='',
url='http://github.com/BonsaiDen/twitter-text-python',
license='GPL',
packages=find_packages(),
py_modules=['ttp'],
include_package_data=True,
zip_safe=False,
install_requires=[],
Expand Down

0 comments on commit a6eb544

Please sign in to comment.