This commit is contained in:
Vanessa McHale
2017-03-26 00:29:12 -05:00
parent 1fdfa3c9b9
commit f27aeb5d51
8 changed files with 166 additions and 3525 deletions

17
setup.py Executable file
View File

@ -0,0 +1,17 @@
from setuptools import setup
setup(name='markovbot',
version='0.1',
description='Make a markov chain based twitter bot',
url='http://github.com/vmchale/markov-bot',
author='Vanessa McHale',
author_email='tmchale@wisc.edu',
license='BSD3',
packages=['markovbot'],
scripts=['bin/markovbot'],
install_requires=[
'gitpython',
'markovify',
'python-twitter',
],
zip_safe=False)