-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added help text, show-config command, sane defaults
1 parent
13ab424
commit ef0c5ef
Showing
5 changed files
with
61 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Setting up a development environment | ||
|
||
1. Clone this repo | ||
1. Create a virtualenv: `python3 -m venv venv` | ||
1. Start virtualenv: `source venv/bin/activate` | ||
1. Install dependencies and this project in editable mode: `pip install --editable .` | ||
|
||
To run the examples, use the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
- Add `setup` feature for modules | ||
- Add build profiles to control the generation of the bakefile(s) | ||
- Add duplicate name check to config file validation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,8 @@ dependencies = [ | |
"jinja2", | ||
"click", | ||
"pydantic", | ||
"typer", | ||
"rich" | ||
] | ||
|
||
[project.readme] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
pyyaml | ||
jinja2 | ||
click | ||
pydantic | ||
pydantic==1.* | ||
typer | ||
rich |