obj2html/setup.py
nicolalandro e3630f8e4d new dist
2021-11-14 15:41:53 +01:00

20 lines
564 B
Python

from distutils.core import setup
with open('pipy_readme.rst', 'r') as f:
long_des = f.read()
setup(
name = 'obj2html',
packages = ['obj2html'],
version = '0.6',
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'],
project_urls={
'Source': 'https://gitlab.com/nicolalandro/obj2html',
},
)