https://github.com/astrojuanlu/kedro-init
A simple CLI command that initialises a Kedro project from an existing Python package
https://github.com/astrojuanlu/kedro-init
Last synced: 6 months ago
JSON representation
A simple CLI command that initialises a Kedro project from an existing Python package
- Host: GitHub
- URL: https://github.com/astrojuanlu/kedro-init
- Owner: astrojuanlu
- License: bsd-2-clause
- Created: 2023-12-03T21:02:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-23T07:07:22.000Z (10 months ago)
- Last Synced: 2024-12-15T03:23:18.652Z (7 months ago)
- Language: Python
- Size: 40 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# kedro-init
[](https://kedro-init.readthedocs.io/en/latest/?badge=latest)
[](https://github.com/astral-sh/ruff)
[](https://pypi.org/project/kedro-init)A simple CLI command that initialises a Kedro project from an existing Python package
## Installation and usage
To use, run
```
$ uvx kedro-init .
```Or, alternatively,
```
$ pipx run kedro-init .
```For example, from a Poetry package:
```
(.venv) $ poetry new --src test-project && cd test-project
(.venv) $ kedro-init .
[00:19:38] Looking for existing package directories cli.py:25
[00:19:45] Initialising config directories cli.py:25
Creating modules cli.py:25
🔶 Kedro project successfully initialised! cli.py:26
```And with a uv package:
```
$ mkdir test-project && cd test-project && uv init
Initialized project `test-project`
$ uvx kedro-init .
[09:06:24] Looking for existing package directories cli.py:25
[09:06:25] Initialising config directories cli.py:25
Creating modules cli.py:25
🔶 Kedro project successfully initialised! cli.py:26
```## Development
To run style checks:
```
(.venv) $ pip install tox
(.venv) $ tox
```