Skip to content

Commit

Permalink
docs: update contribution guidelines
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilbottom committed Oct 11, 2024
1 parent c234c26 commit 2ef47e4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The existing Python modules are available in the dbt Jinja context under the `mo
While in preview, this package is only available from GitHub:

```
pip install git+https://github.com/Bilbottom/[email protected].2
pip install git+https://github.com/Bilbottom/[email protected].3
```

This will be made available on PyPI once it's ready for general use.
Expand Down Expand Up @@ -130,3 +130,14 @@ This is still in preview, and there are a few things to be added before it's rea
- Support for importing any number of packages (currently only one package is supported)
- Configuration via config files and CLI arguments (currently only environment variables are supported)
- More robust testing
## Contributing 🤝
Raise an issue, or fork the repo and open a pull request.
This project uses [Poetry](https://python-poetry.org/) for dependency management and [pre-commit](https://pre-commit.com/) for linting. After cloning the repo, install the dependencies and enable pre-commit:
```
poetry install --sync --with dev,test
pre-commit install --install-hooks
```
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "dbt-py-wrap" # Not `dbt-py` to avoid confusion with the DbtPy package (PyPI requirement)
version = "0.0.2"
version = "0.0.3"
description = "Python wrapper for dbt-core to extend dbt with custom Python."
readme = "README.md"
authors = ["Bilbottom"]
Expand Down

0 comments on commit 2ef47e4

Please sign in to comment.