]> jfr.im git - z_archive/twitter.git/blame - setup.py
Patched it up so now it works
[z_archive/twitter.git] / setup.py
CommitLineData
7364ea65 1from setuptools import setup, find_packages
2import sys, os
3
ae9098f7 4version = '1.0.1'
7364ea65 5
6setup(name='twitter',
7 version=version,
8 description="An API and command-line toolset for Twitter (twitter.com)",
5b8b1ead 9 long_description=open("./README", "r").read(),
5b7080ef 10 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
11 classifiers=[
21e3bd23 12 "Development Status :: 5 - Production/Stable",
5b7080ef 13 "Environment :: Console",
14 "Intended Audience :: End Users/Desktop",
15 "Natural Language :: English",
16 "Operating System :: OS Independent",
17 "Programming Language :: Python",
18 "Topic :: Communications :: Chat :: Internet Relay Chat",
19 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
20 "Topic :: Utilities",
21e3bd23 21 "License :: OSI Approved :: MIT License",
5b7080ef 22 ],
23 keywords='twitter, IRC, command-line tools, web 2.0',
7364ea65 24 author='Mike Verdone',
5b7080ef 25 author_email='mike.verdone+twitterapi@gmail.com',
7364ea65 26 url='http://mike.verdone.ca/twitter/',
21e3bd23 27 license='MIT License',
7364ea65 28 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
29 include_package_data=True,
30 zip_safe=True,
31 install_requires=[
32 # -*- Extra requirements: -*-
ae1d86aa 33 "simplejson>=1.7.1",
169240f2 34 "python-dateutil>=1.1",
5c4cfb47 35 "httplib2>=0.4.0",
7364ea65 36 ],
37 entry_points="""
38 # -*- Entry points: -*-
5251ea48 39 [console_scripts]
40 twitter=twitter.cmdline:main
7d7c8094 41 twitterbot=twitter.ircbot:main
7364ea65 42 """,
43 )