Skip to content

Latest commit

 

History

History
16 lines (8 loc) · 1.03 KB

README.md

File metadata and controls

16 lines (8 loc) · 1.03 KB

Basic Repo Template

This is a basic template repository for a python project.

Change the package_name in: pyproject.toml to the name of your package (doing a search and replace for the default string basic_repo_template being careful to check folder and file names) NOTE - This is pretty clunky and will be automated via a cookiecutter template "soon."

You'll also want to change the name, email etc in pyproject.toml and {repository_name}.__init__.py to your own details.

Publishing to PyPi (to make it pip installable)

NOTE - These instructions haven't been tested yet, this is placeholder text (written 2023-01-19)

You'll need to create a PyPi account and then create an API token for the Github Action configured in the file: .github/workflows/publish_to_pypi_when_new_tag_is_pushed_to_main.yml

These instructions may help you set that up! https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/