Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.28 KB

README.md

File metadata and controls

48 lines (34 loc) · 1.28 KB

PyProject Template

This template automatically create a repository with hatch using a given repository name. For example, if you create a repository "foo" with this template and wait a few seconds, the repository becomes something like below.

.gitignore
.github/workflows/...
docs/index.md
tests/...
foo/__init__.py
foo/__about__.py
mkdocs.yml
pyproject.toml
LICENCE
README.md

The created repository is ready for unit tests and document generation. After cloning the created repository, edit the generated files according to your needs, e.g., appending dependencies in pyproject.toml.

To activate GitHub pages, go to settings/pages/sources and change it to GitHub Actions, so that the documents will automatically created.

To extend this template, fork this template and name it *-template to disable the initializer action.

The following section is the template of README.md.


{repo_name}

This project is work in progress

pytest document

Installation

hatch create env

or

pip install -U -e .