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