-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DOCS] Installation guide & cli Usage
- Loading branch information
Showing
7 changed files
with
93 additions
and
28 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
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 |
---|---|---|
@@ -1,10 +1,22 @@ | ||
|
||
| The most common way to generate a new Python Package Project (in the current working directory), | ||
| is to invoke the *generate-python* cli (while supplying the necessary initial | ||
| information if/when prompted). | ||
| Using the cli is as simple as invoking `generate-python` from a console. | ||
Open a console (ie terminal) and run: | ||
You can run the following to see all the available parameters you can control: | ||
|
||
.. code-block:: shell | ||
generate-python --help | ||
The most common way to generate a new Python Package Project is to run: | ||
|
||
.. code-block:: shell | ||
generate-python | ||
This will prompt you to input some values and create a fresh new Project in the | ||
current directory! | ||
|
||
Now, simply `cd` into the generated Project's directory and enjoy some | ||
of the features the generator supplies new projects with! | ||
|
||
More on use cases in the next section. |
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
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,7 +1,7 @@ | ||
[metadata] | ||
## Setuptools specific information | ||
name = cookiecutter_python | ||
version = 1.1.0 | ||
version = 1.1.1 | ||
# renders on pypi as subtitle | ||
description = Yet another modern Python Package (pypi) with emphasis in CI/CD and automation | ||
long_description = file: README.rst | ||
|
@@ -15,7 +15,7 @@ author_email = [email protected] | |
# represents the web home page of the project | ||
url = https://github.com/boromir674/cookiecutter-python-package | ||
|
||
download_url = https://github.com/boromir674/cookiecutter-python-package/archive/v1.1.0.tar.gz | ||
download_url = https://github.com/boromir674/cookiecutter-python-package/archive/v1.1.1.tar.gz | ||
|
||
## PyPi specific information | ||
project_urls = | ||
|
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 +1 @@ | ||
__version__ = '1.1.0' | ||
__version__ = '1.1.1' |