A URL router for ReactPy
Use pip
to install this package:
pip install reactpy-router
For a developer installation from source be sure to install NPM before running:
git clone https://github.com/reactive-python/reactpy-router
cd reactpy-router
pip install -e . -r requirements.txt
To run the tests you'll need to install Chrome. Then you
can download the ChromeDriver and add it to
your PATH
. Once that's done, simply pip
install the requirements:
pip install -r requirements.txt
And run the tests with pytest
:
pytest tests
You can run the tests in headless mode (i.e. without opening the browser):
pytest tests
You'll need to run in headless mode to execute the suite in continuous integration systems like GitHub Actions.
To release a new version of reactpy-router on PyPI:
- Install
twine
withpip install twine
- Update the
version = "x.y.z"
variable inreactpy-router/__init__.py
git
add the changes to__init__.py
and create agit tag -a x.y.z -m 'comment'
- Build the Python package with
python setup.py sdist bdist_wheel
- Check the build artifacts
twine check --strict dist/*
- Upload the build artifacts to PyPI
twine upload dist/*
To release a new version of reactpy-router
on NPM:
- Update
js/package.json
with new npm package version - Clean out prior builds
git clean -fdx
- Install and publish
npm install && npm publish