Skip to content

Commit 013f84a

Browse files
committed
Adds dependencies
1 parent ec89606 commit 013f84a

File tree

4 files changed

+6
-6860
lines changed

4 files changed

+6
-6860
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ node_modules/
66
*.egg-info/
77
.ipynb_checkpoints
88
*.tsbuildinfo
9+
yarn-error.log
910
jupyterlab_niryo_one/labextension
1011

1112
# Integration tests

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,12 @@
5454
zip_safe=False,
5555
include_package_data=True,
5656
python_requires=">=3.7",
57+
install_requires=['jupyterlab-blockly>=0.1.0a5,<0.2'],
58+
extras_require={
59+
'env': ['pyniryo']
60+
},
5761
platforms="Linux, Mac OS X, Windows",
58-
keywords=["Jupyter", "JupyterLab", "JupyterLab3"],
62+
keywords=["Jupyter", "JupyterLab", "JupyterLab3", "ROS", "Niryo", "Niryo-One"],
5963
classifiers=[
6064
"License :: OSI Approved :: BSD License",
6165
"Programming Language :: Python",

src/niryo_one_python_generators.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121

2222
import * as Blockly from 'blockly';
2323
import BlocklyPy from 'blockly/python';
24-
console.debug('Blockly:', Blockly);
25-
console.debug('Blockly blocks:', Blockly.Blocks);
26-
console.debug('Blockly Python:', BlocklyPy);
2724

2825
var niryo_one_color = '#3D4D9A';
2926

0 commit comments

Comments
 (0)