# HG changeset patch # User Peter Sanchez # Date 1290488773 28800 # Mon Nov 22 21:06:13 2010 -0800 # Node ID 271aa3c72cfbe9fb0c6919a03b44f0f081c8a3bb # Parent f27bb1958f87b9f6e1dd895a90a4dbaadc96ddc5 Added MANIFEST.in and edited setup.py to be more pypi friendly diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,4 @@ +include BSD-LICENSE +include README.txt +recursive-include twittersync/management * +recursive-include twittersync/templatetags * diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='twittersync', - version="0.2", + version=__import__('twittersync').__version__, package_dir={'twittersync': 'twittersync'}, packages=['twittersync',], description='Django app to sync Twitter stream to local DB.', @@ -15,12 +15,12 @@ long_description=long_description, platforms=["any"], classifiers=[ - 'Development Status :: 2 - Beta', + 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Environment :: Any Environment', + 'Environment :: Web Environment', ], ) diff --git a/twittersync/__init__.py b/twittersync/__init__.py --- a/twittersync/__init__.py +++ b/twittersync/__init__.py @@ -0,0 +1,1 @@ +__version__ = '0.1'