271aa3c72cfb — Peter Sanchez 13 years ago
Added MANIFEST.in and edited setup.py to be more pypi friendly
3 files changed, 8 insertions(+), 3 deletions(-)

A => MANIFEST.in
M setup.py
A twittersync/__init__.py
A => MANIFEST.in +4 -0
@@ 0,0 1,4 @@ 
+include BSD-LICENSE
+include README.txt
+recursive-include twittersync/management *
+recursive-include twittersync/templatetags *

          
M setup.py +3 -3
@@ 4,7 4,7 @@ long_description = open('README.txt').re
 
 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 @@ setup(
     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',
     ],
 )

          
A twittersync/__init__.py +1 -0
@@ 0,0 1,1 @@ 
+__version__ = '0.1'