-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 714 Bytes
/
setup.py
File metadata and controls
17 lines (16 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from distutils.core import setup
setup(name='nbpapaya',
version='1.0',
description='Papaya viewer in the IPython notebook',
author='Anisha',
author_email='akeshavan@ucla.edu',
url=None,
packages=['nbpapaya'],
package_data={"nbpapaya":["Papaya/release/current/standard/papaya.js",
"Papaya/release/current/standard/papaya.css",
"three.js/build/*",
"three.js/libs/stats.min.js",
"three.js/examples/js/controls/TrackballControls.js",
"three.js/examples/js/loaders/VTKLoader.js",
]}
)