20 lines
564 B
Python
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',
|
|
},
|
|
) |