X-Git-Url: https://jfr.im/git/z_archive/twitter.git/blobdiff_plain/7f6c5ae3ec7a7ac9d77b8dd90fcb8cc46092e1b1..f7f84da4ff1a1ae8e9f0a4de12125ec9dc1aee9f:/setup.py diff --git a/setup.py b/setup.py index 2c57a24..41b2bc4 100644 --- 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: -*-