2021-11-13 07:18:04 -07:00
|
|
|
from distutils.core import setup
|
2021-11-14 08:19:20 -07:00
|
|
|
import os
|
2021-11-13 07:33:54 -07:00
|
|
|
|
2021-11-14 08:19:20 -07:00
|
|
|
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'pipy_readme.rst'), 'r') as f:
|
2021-11-14 07:41:53 -07:00
|
|
|
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 08:19:20 -07:00
|
|
|
version = '0.7',
|
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-13 07:18:04 -07:00
|
|
|
)
|