Skip to content

Tutorial

Tutorial

Note

Did you find this article confusing? Edit this file and pull a request!

To start with, you will need GitHub, PyPI, TestPyPI and Codecov accounts. If you don't have one, please follow the links to apply one before you get started on this tutorial.

If you are new to Git and GitHub, you should probably spend a few minutes on some tutorials at the top of the page at GitHub Help.

Step 1: Install Cookiecutter

Install cookiecutter:

1
pip install cookiecutter

Step 2: Generate Your Package

Now it's time to generate your Python package.

Run the following command and feed with answers, If you don’t know what to enter, stick with the defaults:

1
cookiecutter https://github.com/cheeyeelim/cookiecutter-pypackage.git

Finally, a new folder will be created under current folder, the name is the answer you provided to project_slug.

Go to this generated folder, the project layout should look like:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.
├── .bumpversion.cfg
├── .editorconfig
├── .github
│   ├── ISSUE_TEMPLATE.md
│   └── workflows
│       ├── dev.yml
│       ├── preview.yml
│       └── release.yml
├── .gitignore
├── .pre-commit-config.yaml
├── CHANGELOG.md
├── LICENSE
├── README.md
├── docs
│   ├── api.md
│   ├── changelog.md
│   ├── contributing.md
│   ├── index.md
│   ├── installation.md
│   └── usage.md
├── makefile
├── mkdocs.yml
├── my_package
│   ├── __init__.py
│   ├── cli.py
│   └── my_package.py
├── pyproject.toml
├── setup.cfg
└── tests
    ├── __init__.py
    └── test_my_package.py

Here the project_slug is my-package, when you generate yours, it could be other name.

Also be noticed that there's pyproject.toml in this folder. This is the main configuration file of our project.

Step 3: Install Poetry

In this step we will install Poetry if you are not using it, since the whole project is managed by it.

1
2
cd my_package
pip install poetry

In addition, Poetry provides a custom installer that will install poetry isolated from the rest of your system by vendorizing its dependencies. This is the recommended way of installing poetry.

Step 4: Install Dev Requirements

You should still be in the folder named as project_slug, which containing the pyproject.toml file.

Install the new project's local development requirements with poetry install:

1
2
poetry install -E doc -E dev -E test
poetry run tox

Poetry will create its own virtualenv isolated from your system and install the dependencies in it. We installed extra dependency need by developer with -E {group} options, such as documentation build tools, lint, formatting and test tools etc.

We also launch a smoke test here by running poetry run tox. This will run tox within created virtual environment, give you a test report and lint report. You should see no errors except some lint warnings.

You can also activate the virtual environment manually with poetry shell, this will create a new shell.

Tips

Extra dependencies are grouped into three groups, doc, dev and test for better granularity. When you ship the package, dependencies in group doc, dev and test might not be shipped.

As the developer, you will need install all the dependencies.

Tips

If you found erros like the following during tox run:

1
ERROR: InterpreterNotFound: python3.9
don't be panic, this is just because python3.x is not found on your machine. If you decide to support that version of Python in your package, please install it on your machine if it is not automatically install by tox or tox-conda. Otherwise, remove it from tox.ini and pyproject.toml.

Step 5: Create a GitHub Repo

Go to your GitHub account and create a new repo named my-package, where my-package matches the project_slug from your answers to running cookiecutter.

Then go to repo > settings > secrets, click on 'New repository secret', add the following secrets:

Step 6: Set Up codecov integration

Tips

If you have already setup codecov integration and configured access for all your repositories, you can skip this step.

In your browser, visit install codecov app, you'll be landed at this page:

Click on the green install button at top right, choose all repositories then click on install button, following directions until all set.

If the repo you created is a private repo, you need to set the following additional secrets, which is not required for public repos:

Step 7: Upload code to GitHub

Back to your develop environment, find the folder named after the project_slug. Move into this folder, and then setup git to use your GitHub repo and upload the code:

Warning

It is necessary to run git add and git commit twice as the first time will install pre-commit hooks at last step. Then pre-commit be invoked when you run git commit, and some files may be modified by hooks. If so, please add these files and commit again.

1
2
3
4
5
6
7
8
git add .
git commit -m "Initial commit."

git add .
git commit -m "Initial commit."
git branch -M main
git remote add origin git@github.com:myusername/my-package.git
git push -u origin main

Where myusername and my-package are adjusted for your username and repo name.

You'll need a ssh key to push the repo. You can Generate a key or Add an existing one.

Check result

After pushing your code to GitHub, goto GitHub web page, navigate to your repo, then click on actions link, you should find screen like this:

There should be some workflows running. After they finished, go to TestPyPI, check if a new artifact is published under the name project_slug.

Step 8. Check documentation

Documentation will be published and available at https://{your_github_account}.github.io/{your_repo} once:

  1. The commit is tagged, and the tag name is started with 'v' (lower case)
  2. Build/testing executed by GitHub CI passed

If you'd like to see what it's look like now, you could run the following command:

1
poetry run mkdocs serve

This will run the builtin development server for you to preview.

To build locally under site folder:

1
poetry run mkdocs build

Step 9. Make official release

After done with your phased development in a feature branch, make a pull request, following instructions at release checklist, trigger first official release and check result at PyPI.


Last update: 2021-12-20
Back to top