test deploy 2

This commit is contained in:
nicolalandro 2021-11-14 16:19:20 +01:00
parent dcaee6ebd9
commit ba24603f44

View File

@ -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,