work with files

This commit is contained in:
nicolalandro 2021-11-14 17:07:11 +01:00
parent 7cab0442fa
commit dc079da088
2 changed files with 7 additions and 3 deletions

View File

@ -1,2 +1,2 @@
include pipy_readme include pipy_readme.rst
include obj2html/index.html exclude test

View File

@ -7,7 +7,7 @@ with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'pipy_readme.
setup( setup(
name = 'obj2html', name = 'obj2html',
packages = ['obj2html'], packages = ['obj2html'],
version = '0.9', version = '0.12',
license='MIT', license='MIT',
description = 'Create an html with three.js that contains the given .obj file.', description = 'Create an html with three.js that contains the given .obj file.',
long_description = long_des, long_description = long_des,
@ -18,4 +18,8 @@ setup(
project_urls={ project_urls={
'Source': 'https://gitlab.com/nicolalandro/obj2html', 'Source': 'https://gitlab.com/nicolalandro/obj2html',
}, },
include_package_data = True,
package_data = {
'' : ['*.html'],
}
) )