Skip to content

Commit a1f23bb

Browse files
committed
Move requirements-dev.txt into setup.cfg
1 parent 91da5f0 commit a1f23bb

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,6 @@ it](https://github.com/rstudio/py-shinywidgets/issues/new)!
248248
If you want to do development on `{shinywidgets}`, run:
249249

250250
```sh
251-
pip install -e .
251+
pip install -e ".[dev,test]"
252252
cd js && yarn watch
253253
```

requirements-dev.txt

Lines changed: 0 additions & 4 deletions
This file was deleted.

setup.cfg

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,17 @@ tests_require =
4242
pytest>=3
4343
zip_safe = False
4444

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+
4556
[options.packages.find]
4657
include = shinywidgets, shinywidgets.*
4758

0 commit comments

Comments
 (0)