Afaque Ahmad
06/12/2023, 8:14 AMkedro-plugins
.
How should I setup my local development environment? I cannot find a requirements.txt
file.Nok Lam Chan
06/12/2023, 10:09 AMrequirements.txt
-> pyproject.toml
, which is becoming the standard of Python Packaging.
You can do
git clone git@github.com:kedro-org/kedro-plugins.git
make sign-off
(This is important of you will run into DCO issues later)
pip install -e ".[spark]"
See more in kedro’s CONTRIBUTING.md, I figure we should have one for kedro-plugins
but it isn’t exists yet.