obj2html/setup.py

25 lines
708 B
Python
Raw Normal View History

2021-11-13 07:18:04 -07:00
from distutils.core import setup
2021-11-13 07:33:54 -07:00
2021-11-14 08:46:50 -07:00
import os
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'pipy_readme.rst'), 'r') as f:
long_des = f.read()
2021-11-13 07:33:54 -07:00
2021-11-13 07:18:04 -07:00
setup(
2021-11-13 08:04:16 -07:00
name = 'obj2html',
packages = ['obj2html'],
2021-11-14 09:07:11 -07:00
version = '0.12',
2021-11-13 08:04:16 -07:00
license='MIT',
description = 'Create an html with three.js that contains the given .obj file.',
long_description = long_des,
author = 'Nicola Landro',
author_email = 'nicolaxx94@live.it',
url = 'https://gitlab.com/nicolalandro/obj2html',
keywords = ['3D', '.obj', '.html', 'jupyter', '3D viewer'],
2021-11-14 01:12:37 -07:00
project_urls={
'Source': 'https://gitlab.com/nicolalandro/obj2html',
},
2021-11-14 09:07:11 -07:00
include_package_data = True,
package_data = {
'' : ['*.html'],
}
2021-11-13 07:18:04 -07:00
)