FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
meshcat-python/setup.py at master · meshcat-dev/meshcat-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
meshcat-dev
/
meshcat-python
Public
Notifications
You must be signed in to change notification settings
Fork
73
Star
300
Code
Issues
34
Pull requests
9
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
meshcat-python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
31 lines (30 loc) · 870 Bytes
Breadcrumbs
meshcat-python
/
setup.py
Copy path
File metadata and controls
31 lines (30 loc) · 870 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
=
"mail@robindeits.com"
,
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
)
Back
|
FazBrowse Home
|
New Git URL