obj2html/setup.py

38 lines
1.3 KiB
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
long_des = """ # obj2html lib
You can use that lib to create html file from a .obj path:
```
from obj2html import obj2html
html_string = obj2html(obj_path)
obj2html(obj_path, 'index.html')
# firefox index.html
```
Use in a Jupyter notebook to display a .obj 3D file:
```
! pip install obj2html
from obj2html import obj2html
from IPython.display import display, HTML
obj_path = 'model.obj'
obj2html(obj_path, 'index.html')
display(HTML('index.html'))
```
"""
2021-11-13 07:18:04 -07:00
setup(
name = 'obj2html', # How you named your package folder (MyLib)
packages = ['obj2html'], # Chose the same as "name"
2021-11-13 07:33:54 -07:00
version = '0.2', # Start with a small number and increase it with every change you make
2021-11-13 07:18:04 -07:00
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
2021-11-13 07:33:54 -07:00
description = 'Create an html with three.js that contains the given .obj file.', # Give a short description about your library
long_description=long_des,
2021-11-13 07:18:04 -07:00
author = 'Nicola Landro', # Type in your name
author_email = 'nicolaxx94@live.it', # Type in your E-Mail
url = 'https://gitlab.com/nicolalandro/obj2html', # Provide either the link to your github or to your website
keywords = ['3D', '.obj', '.html','jupyter', ''], # Keywords that define your package best
install_requires=[],
)