Added __version__, corrected relative imports.

This commit is contained in:
Michael Lazar
2015-03-08 01:01:32 -08:00
parent 256151fa1b
commit bc9e36f7af
2 changed files with 9 additions and 16 deletions

View File

@@ -1,19 +1,12 @@
from setuptools import setup
import os
#python setup.py develop --user
#python setup.py develop --user --uninstall
def read(*paths):
""" read files """
with open(os.path.join(*paths), 'r') as filename:
return filename.read()
__version__ = '1.0a8'
setup(
name='rtv',
version='1.0a7',
version=__version__,
description='A simple terminal viewer for Reddit (Reddit Terminal Viewer)',
long_description=(read('README.rst')),
long_description=open('README.rst').read(),
url='https://github.com/michael-lazar/rtv',
author='Michael Lazar',
author_email='lazar.michael22@gmail.com',