Files
markov-bot/setup.py
Vanessa McHale 286e615d53 rm build dir
2017-03-26 00:30:11 -05:00

17 lines
446 B
Python
Executable File

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=[
'markovify',
'python-twitter',
],
zip_safe=False)