Moved main back inside of rtv package.

This commit is contained in:
Michael Lazar
2015-03-02 02:38:03 -08:00
parent a94be0d8fd
commit a558e12686
2 changed files with 2 additions and 2 deletions

View File

@@ -67,4 +67,4 @@ def main():
if __name__ == '__main__': if __name__ == '__main__':
main() main()

View File

@@ -13,5 +13,5 @@ setup(
keywords='reddit terminal praw', keywords='reddit terminal praw',
packages=['rtv'], packages=['rtv'],
install_requires=['praw', 'six'], install_requires=['praw', 'six'],
entry_points={'console_scripts': ['rtv=main:main']} entry_points={'console_scripts': ['rtv=rtv.main:main']}
) )