]> jfr.im git - z_archive/twitter.git/blobdiff - setup.py
bump version (though we're not done yet)
[z_archive/twitter.git] / setup.py
index 2c57a24cba260ab06d5209972988c97599e2e0c0..41b2bc4f5bbdf2183d8fc6e636ba9ed63ba2b403 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,23 +1,15 @@
 from setuptools import setup, find_packages
 import sys, os
 
-version = '0.3.1'
+version = '1.3b'
 
 setup(name='twitter',
       version=version,
       description="An API and command-line toolset for Twitter (twitter.com)",
-      long_description="""\
-An API and command-line toolset for Twitter (twitter.com). Includes:
-
-  * a lightweight Twitter API access class.
-  * a twitter command-line tool for setting your status and getting your
-    friends' status
-  * a twitter IRC bot for announcing status updates to an IRC channel
-
-""",
+      long_description=open("./README", "r").read(),
       # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
       classifiers=[
-          "Development Status :: 4 - Beta",
+          "Development Status :: 5 - Production/Stable",
           "Environment :: Console",
           "Intended Audience :: End Users/Desktop",
           "Natural Language :: English",
@@ -26,19 +18,20 @@ An API and command-line toolset for Twitter (twitter.com). Includes:
           "Topic :: Communications :: Chat :: Internet Relay Chat",
           "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
           "Topic :: Utilities",
+          "License :: OSI Approved :: MIT License",
           ],
       keywords='twitter, IRC, command-line tools, web 2.0',
       author='Mike Verdone',
       author_email='mike.verdone+twitterapi@gmail.com',
       url='http://mike.verdone.ca/twitter/',
-      license='',
+      license='MIT License',
       packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
       include_package_data=True,
       zip_safe=True,
       install_requires=[
           # -*- Extra requirements: -*-
           "simplejson>=1.7.1",
-          "dateutil>=1.1",
+          "python-dateutil>=1.1",
       ],
       entry_points="""
       # -*- Entry points: -*-