-
Notifications
You must be signed in to change notification settings - Fork 63
/
setup.py
31 lines (30 loc) · 870 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
26
27
28
29
30
31
import sys
from setuptools import setup, find_packages
setup(name="meshcat",
version="0.3.2",
description="WebGL-based visualizer for 3D geometries and scenes",
url="https://github.com/rdeits/meshcat-python",
download_url="https://github.com/rdeits/meshcat-python/archive/v0.3.2.tar.gz",
author="Robin Deits",
author_email="[email protected]",
license="MIT",
packages=find_packages("src"),
package_dir={"": "src"},
test_suite="meshcat",
entry_points={
"console_scripts": [
"meshcat-server=meshcat.servers.zmqserver:main"
]
},
install_requires=[
"ipython >= 5",
"u-msgpack-python >= 2.4.1",
"numpy >= 1.14.0",
"tornado >= 4.0.0",
"pyzmq >= 17.0.0",
"pyngrok >= 4.1.6",
"pillow >= 7.0.0"
],
zip_safe=False,
include_package_data=True
)