submitted lib
This commit is contained in:
parent
fc6b0c7663
commit
d90076d1b4
@ -40,8 +40,14 @@ python3.8 -m coverage report -m
|
||||
```
|
||||
* deploy pipy
|
||||
```
|
||||
pip install -U twine wheel setuptools
|
||||
|
||||
rm -rf dist
|
||||
|
||||
python setup.py sdist
|
||||
pip install twine
|
||||
python setup.py bdist_wheel
|
||||
twine check dist/*
|
||||
|
||||
twine upload dist/*
|
||||
```
|
||||
|
||||
|
59
setup.py
59
setup.py
@ -1,38 +1,43 @@
|
||||
from distutils.core import setup
|
||||
|
||||
long_des = """ # obj2html lib
|
||||
You can use that lib to create html file from a .obj path:
|
||||
```
|
||||
from obj2html import obj2html
|
||||
long_des = """obj2html lib
|
||||
=============================
|
||||
|
||||
html_string = obj2html(obj_path)
|
||||
obj2html(obj_path, 'index.html')
|
||||
# firefox index.html
|
||||
```
|
||||
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')
|
||||
! pip install
|
||||
|
||||
from obj2html import obj2html
|
||||
|
||||
from IPython.display import display, HTML
|
||||
|
||||
obj_path = 'model.obj'
|
||||
|
||||
obj2html(obj_path, 'index.html')
|
||||
|
||||
display(HTML('index.html'))
|
||||
|
||||
display(HTML('index.html'))
|
||||
```
|
||||
"""
|
||||
|
||||
setup(
|
||||
name = 'obj2html', # How you named your package folder (MyLib)
|
||||
packages = ['obj2html'], # Chose the same as "name"
|
||||
version = '0.2', # Start with a small number and increase it with every change you make
|
||||
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
|
||||
description = 'Create an html with three.js that contains the given .obj file.', # Give a short description about your library
|
||||
long_description=long_des,
|
||||
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=[],
|
||||
name = 'obj2html',
|
||||
packages = ['obj2html'],
|
||||
version = '0.3',
|
||||
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'],
|
||||
)
|
Loading…
Reference in New Issue
Block a user