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