Hi Folks I'm working with reference to this <featu...
# questions
a
Hi Folks I'm working with reference to this feature on
kedro-plugins
. How should I setup my local development environment? I cannot find a
requirements.txt
file.
n
Hi @Afaque Ahmad, we recently started the upgrade from
requirements.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.
@Afaque Ahmad are you able to get started with this?