]> jfr.im git - z_archive/twitter.git/blame - setup.py
Version 1.14.3
[z_archive/twitter.git] / setup.py
CommitLineData
7364ea65 1from setuptools import setup, find_packages
2import sys, os
3
5424ccee 4version = '1.14.3'
7364ea65 5
d92a068d 6install_requires = [
af37e278 7 # -*- Extra requirements: -*-
d92a068d 8 ]
af37e278 9
aac3dffb 10setup(name='twitter',
7364ea65 11 version=version,
12 description="An API and command-line toolset for Twitter (twitter.com)",
5b8b1ead 13 long_description=open("./README", "r").read(),
5b7080ef 14 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
15 classifiers=[
21e3bd23 16 "Development Status :: 5 - Production/Stable",
5b7080ef 17 "Environment :: Console",
18 "Intended Audience :: End Users/Desktop",
19 "Natural Language :: English",
20 "Operating System :: OS Independent",
6129a21e 21 "Programming Language :: Python :: 2.6",
aac3dffb 22 "Programming Language :: Python :: 2.7",
433db80d 23 "Programming Language :: Python :: 3.2",
0078efe3
MV
24 "Programming Language :: Python :: 3.3",
25 "Programming Language :: Python :: 3.4",
5b7080ef 26 "Topic :: Communications :: Chat :: Internet Relay Chat",
27 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
28 "Topic :: Utilities",
21e3bd23 29 "License :: OSI Approved :: MIT License",
5b7080ef 30 ],
31 keywords='twitter, IRC, command-line tools, web 2.0',
7364ea65 32 author='Mike Verdone',
5b7080ef 33 author_email='mike.verdone+twitterapi@gmail.com',
7364ea65 34 url='http://mike.verdone.ca/twitter/',
21e3bd23 35 license='MIT License',
7364ea65 36 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
37 include_package_data=True,
38 zip_safe=True,
af37e278 39 install_requires=install_requires,
7364ea65 40 entry_points="""
41 # -*- Entry points: -*-
5251ea48 42 [console_scripts]
43 twitter=twitter.cmdline:main
7d7c8094 44 twitterbot=twitter.ircbot:main
146b4f29 45 twitter-log=twitter.logger:main
a7282452
S
46 twitter-archiver=twitter.archiver:main
47 twitter-follow=twitter.follow:main
640e695c 48 twitter-stream-example=twitter.stream_example:main
7364ea65 49 """,
50 )