-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Man Parvesh Singh Randhawa
committed
Oct 7, 2024
1 parent
7561fda
commit 4456ba5
Showing
2 changed files
with
18 additions
and
1 deletion.
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,17 @@ | ||
.ONESHELL: # Applies to every targets in the file! | ||
|
||
poetry-build: | ||
@echo "Building package..." | ||
poetry build | ||
|
||
test: | ||
@echo "Running tests..." | ||
poetry run pytest | ||
|
||
site-serve: | ||
@echo "Building site..." | ||
mkdocs serve -f docs/mkdocs.yml | ||
|
||
site-deploy: | ||
@echo "Deploying site..." | ||
mkdocs gh-deploy -f docs/mkdocs.yml |
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,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "yodapa" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
description = "Personal Assistant on the command line" | ||
authors = ["Man Parvesh Singh Randhawa <[email protected]>"] | ||
license = "MIT" | ||
|