We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91da5f0 commit a1f23bbCopy full SHA for a1f23bb
README.md
@@ -248,6 +248,6 @@ it](https://github.com/rstudio/py-shinywidgets/issues/new)!
248
If you want to do development on `{shinywidgets}`, run:
249
250
```sh
251
-pip install -e .
+pip install -e ".[dev,test]"
252
cd js && yarn watch
253
```
requirements-dev.txt
setup.cfg
@@ -42,6 +42,17 @@ tests_require =
42
pytest>=3
43
zip_safe = False
44
45
+[options.extras_require]
46
+test =
47
+ pytest>=6.2.4
48
+dev =
49
+ black>=23.1.0
50
+ flake8==5.0.4;python_version<="3.7"
51
+ flake8>=6.0.0;python_version>"3.7"
52
+ isort>=5.11.2
53
+ pyright>=1.1.284
54
+ wheel
55
+
56
[options.packages.find]
57
include = shinywidgets, shinywidgets.*
58
0 commit comments