forked from francisengelmann/PyViz3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 925 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup
# Read the contents of your README file.
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
version = '0.2.18'
setup(name='pyviz3d',
version=version,
include_package_data=True,
description='PyViz3D is a python package to visualize 3D scenes.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/francisengelmann/pyviz3d',
download_url='https://github.com/francisengelmann/pyviz3d/archive/' + version + '.tar.gz',
author='Francis Engelmann',
author_email='francis.engelmann@gmail.com',
license='MIT',
packages=['pyviz3d'],
package_data={'pyviz3d': ['src/index.html', 'src/js/*.js']},
setup_requires=['numpy'],
zip_safe=False)