Skip to content
This repository has been archived by the owner on Apr 4, 2018. It is now read-only.

Commit

Permalink
Merge pull request #6 from j4mie/fix-install
Browse files Browse the repository at this point in the history
Use find_packages to ensure template library gets installed
  • Loading branch information
dryan committed Dec 20, 2011
2 parents be5b08a + 6c75574 commit 0db0077
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='twitter-text-py',
Expand All @@ -7,7 +7,7 @@
author='Daniel Ryan',
author_email='dryan@dryan.com',
url='http://github.com/dryan/twitter-text-py',
packages=['twitter_text'],
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
Expand Down

0 comments on commit 0db0077

Please sign in to comment.