1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
'''Setup for Retweet'''
import os.path
from setuptools import setup
CLASSIFIERS = [
'Intended Audience :: End Users/Desktop',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5'
]
setup(
name='retweet',
version='0.10',
license='GNU GPL v3',
description='twitter bot to retweet all tweets from a user',
long_description='twitter bot to retweet all tweets from a user',
classifiers=CLASSIFIERS,
author='Carl Chenet',
author_email='chaica@ohmytux.com',
url='https://github.com/chaica/retweet',
download_url='https://github.com/chaica/retweet',
packages=['retweet'],
scripts=['scripts/retweet'],
install_requires=['tweepy>=3.5.0', 'sqlalchemy'],
test_suite = 'tests',
)
|