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