python/{{ cookiecutter.project_slug }}
2023-05-15 22:00:30 +02:00
..
tests poetry version 2023-05-15 13:23:02 +02:00
{{ cookiecutter.project_slug }} poetry version 2023-05-15 13:23:02 +02:00
.gitignore reference to poetry in readme 2023-05-15 22:00:30 +02:00
LICENSE poetry version 2023-05-15 13:23:02 +02:00
pyproject.toml poetry version 2023-05-15 13:23:02 +02:00
README.md reference to poetry in readme 2023-05-15 22:00:30 +02:00
SECURITY.md poetry version 2023-05-15 13:23:02 +02:00

{% set is_open_source = cookiecutter.open_source_license != 'Proprietary' -%}

{{ cookiecutter.project_name }}

{{ cookiecutter.project_short_description }}

Install

This project can be installed using pip:

pip install git+{{ cookiecutter.project_url }}.git

{% if is_open_source %}

License

This project if a free software released under the {{ cookiecutter.open_source_license }}.

Dev

This project is managed by poetry.

To open a shell in a venv of the project:

git clone {{ cookiecutter.project_url }}.git
cd {{ cookiecutter.project_slug }}
poetry shell
poetry install

Test

Tests are run using pytest:

pytest

{% endif %}

Author

  • {{ cookiecutter.full_name }}

Security

If you discover a potential security issue in this project, please contact {{ cookiecutter.email }}.