From ba24603f440334a20f1978ecbc8cbef9cc11c3e8 Mon Sep 17 00:00:00 2001 From: nicolalandro Date: Sun, 14 Nov 2021 16:19:20 +0100 Subject: [PATCH] test deploy 2 --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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,