]> jfr.im git - z_archive/twitter.git/blob - setup.py
updated for 0.4
[z_archive/twitter.git] / setup.py
1 from setuptools import setup, find_packages
2 import sys, os
3
4 version = '0.4'
5
6 setup(name='twitter',
7 version=version,
8 description="An API and command-line toolset for Twitter (twitter.com)",
9 long_description="""\
10 An API and command-line toolset for Twitter (twitter.com). Includes:
11
12 * a lightweight Twitter API access class.
13 * a twitter command-line tool for setting your status and getting your
14 friends' status
15 * a twitter IRC bot for announcing status updates to an IRC channel
16
17 """,
18 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
19 classifiers=[
20 "Development Status :: 5 - Production/Stable",
21 "Environment :: Console",
22 "Intended Audience :: End Users/Desktop",
23 "Natural Language :: English",
24 "Operating System :: OS Independent",
25 "Programming Language :: Python",
26 "Topic :: Communications :: Chat :: Internet Relay Chat",
27 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
28 "Topic :: Utilities",
29 "License :: OSI Approved :: MIT License",
30 ],
31 keywords='twitter, IRC, command-line tools, web 2.0',
32 author='Mike Verdone',
33 author_email='mike.verdone+twitterapi@gmail.com',
34 url='http://mike.verdone.ca/twitter/',
35 license='MIT License',
36 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
37 include_package_data=True,
38 zip_safe=True,
39 install_requires=[
40 # -*- Extra requirements: -*-
41 "simplejson>=1.7.1",
42 "dateutil>=1.1",
43 ],
44 entry_points="""
45 # -*- Entry points: -*-
46 [console_scripts]
47 twitter=twitter.cmdline:main
48 twitterbot=twitter.ircbot:main
49 """,
50 )