]> jfr.im git - z_archive/twitter.git/blame - setup.py
Merge branch 'python3' into python2_and_3
[z_archive/twitter.git] / setup.py
CommitLineData
7364ea65 1from setuptools import setup, find_packages
2import sys, os
3
146b4f29 4version = '1.5.3'
7364ea65 5
d92a068d 6install_requires = [
af37e278 7 # -*- Extra requirements: -*-
d92a068d 8 ]
af37e278 9
2c52eed9 10setup(name='twitter3',
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",
37f17cd7 21 "Programming Language :: Python :: 3",
5b7080ef 22 "Topic :: Communications :: Chat :: Internet Relay Chat",
23 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
24 "Topic :: Utilities",
21e3bd23 25 "License :: OSI Approved :: MIT License",
5b7080ef 26 ],
27 keywords='twitter, IRC, command-line tools, web 2.0',
7364ea65 28 author='Mike Verdone',
5b7080ef 29 author_email='mike.verdone+twitterapi@gmail.com',
7364ea65 30 url='http://mike.verdone.ca/twitter/',
21e3bd23 31 license='MIT License',
7364ea65 32 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
33 include_package_data=True,
34 zip_safe=True,
af37e278 35 install_requires=install_requires,
7364ea65 36 entry_points="""
37 # -*- Entry points: -*-
5251ea48 38 [console_scripts]
39 twitter=twitter.cmdline:main
7d7c8094 40 twitterbot=twitter.ircbot:main
146b4f29 41 twitter-log=twitter.logger:main
7364ea65 42 """,
43 )