forked from frostming/monas
-
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.
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 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,18 @@ | ||
# Feature: Specifying multiple or no package directories for `monas init` | ||
|
||
This PR adds the following options to `monas init` command: | ||
|
||
- `-d`/`--default-package-dir`: specify one or more package dirs, default value is packages | ||
``` | ||
$ monas init -d packagedir1 --default-package-dir packagedir2 | ||
monas Creating pyproject.toml | ||
monas Creating packagedir1 | ||
monas Creating packagedir2 | ||
monas Creating project files | ||
``` | ||
- `-n`/`--no-package-dir`: this will not add any package directories, and overrides behaviour of -d | ||
``` | ||
$ monas init -n | ||
monas Creating pyproject.toml | ||
monas Creating project files | ||
``` |