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