diff --git a/setup.py b/setup.py index 1c02912..e7de4ca 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,13 @@ from distutils.core import setup +import os -with open('pipy_readme.rst', 'r') as f: +with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'pipy_readme.rst'), 'r') as f: long_des = f.read() setup( name = 'obj2html', packages = ['obj2html'], - version = '0.6', + version = '0.7', license='MIT', description = 'Create an html with three.js that contains the given .obj file.', long_description = long_des,