Python 3.4 compatability.

This commit is contained in:
Michael Lazar
2015-02-02 23:46:47 -08:00
parent c9c38dc264
commit cafc08dafa
6 changed files with 38 additions and 23 deletions

View File

@@ -1,4 +1,6 @@
from setuptools import setup
#python setup.py develop --user
#python setup.py develop --user --uninstall
setup(
name='rtv',
@@ -10,8 +12,6 @@ setup(
license='MIT',
keywords='reddit terminal praw',
packages=['rtv'],
install_requires=['praw'],
install_requires=['praw', 'six'],
entry_points={'console_scripts': ['rtv=rtv:main']}
)
#python setup.py develop --user
)