generated from Hochfrequenz/python_template_repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set up initial CI/CD workflows and tools
- Loading branch information
1 parent
739fcdd
commit 6ff32a6
Showing
11 changed files
with
28 additions
and
139 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: "Unittests" | ||
name: "tests" | ||
|
||
on: [push] | ||
jobs: | ||
|
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,104 +1,28 @@ | ||
# Python Template Repository including a `tox.ini`, Unittests&Coverage, Pylint & MyPy Linting Actions and a PyPI Publishing Workflow | ||
# Python BO4E ORM | ||
|
||
<!--- you need to replace the `organization/repo_name` in the status badge URLs ---> | ||
|
||
![Unittests status badge](https://github.com/Hochfrequenz/python_template_repository/workflows/Unittests/badge.svg) | ||
![Coverage status badge](https://github.com/Hochfrequenz/python_template_repository/workflows/Coverage/badge.svg) | ||
![Linting status badge](https://github.com/Hochfrequenz/python_template_repository/workflows/Linting/badge.svg) | ||
![Black status badge](https://github.com/Hochfrequenz/python_template_repository/workflows/Formatting/badge.svg) | ||
![Unittests status badge](https://github.com/Hochfrequenz/b04e-python-orm/workflows/tests/badge.svg) | ||
![Coverage status badge](https://github.com/Hochfrequenz/b04e-python-orm/workflows/Coverage/badge.svg) | ||
![Linting status badge](https://github.com/Hochfrequenz/b04e-python-orm/workflows/Linting/badge.svg) | ||
![Black status badge](https://github.com/Hochfrequenz/b04e-python-orm/workflows/Formatting/badge.svg) | ||
|
||
This is a template repository. It doesn't contain any useful code but only a minimal working setup for a Python project including: | ||
A ORM tool to map between SQL databases and bo4e classes using: | ||
... | ||
|
||
- a basic **project structure** with | ||
- tox.ini | ||
- requirements.in | ||
- and a requirements.txt derived from it | ||
- an example class | ||
- an example unit test (using pytest) | ||
- ready to use **Github Actions** for | ||
- [pytest](https://pytest.org) | ||
- [code coverage measurement](https://coverage.readthedocs.io) (fails below 80% by default) | ||
- [pylint](https://pylint.org/) (only accepts 10/10 code rating by default) | ||
- [mypy](https://github.com/python/mypy) (static type checks where possible) | ||
- [black](https://github.com/psf/black) code formatter check | ||
- [isort](https://pycqa.github.io/isort/) import order check | ||
- [codespell](https://github.com/codespell-project/codespell) spell check (including an ignore list) | ||
- ready-to-use publishing workflow for pypi (see readme section below) | ||
|
||
|
||
By default, it uses Python version 3.11. | ||
|
||
## How to use this Repository on Your Machine | ||
|
||
This introduction assumes that you have tox installed already ( | ||
see [installation instructions](https://tox.readthedocs.io/en/latest/installation.html)) and that a `.toxbase` environment | ||
has been created. | ||
`.toxbase` is a project independent virtual environment-template for all the tox environments on your machine. If anything is weird during the tox installation or after the installation, try turning your computer off and on again before getting too frustrated. | ||
|
||
Also on new windows machines it is possible that the execution policy is set to restricted and you are not allowed execute scripts. You can find detailed information [here](https://learn.microsoft.com/de-de/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.3). | ||
|
||
If this is the case, clone this repository and create the `dev` environment on your machine. | ||
### Installation | ||
|
||
It will also be [available on pypi](https://pypi.org/project/borm/). | ||
```bash | ||
tox -e dev | ||
pip install borm | ||
``` | ||
|
||
### How to use with PyCharm | ||
|
||
1. Create a new project using existing sources with your local working copy of this repository as root directory. Choose | ||
the path `your_repo/.tox/dev/` as path of the "previously configured interpreter". | ||
2. Set the | ||
default [test runner of your project](https://www.jetbrains.com/help/pycharm/choosing-your-testing-framework.html) to | ||
pytest. | ||
3. Set the `src` directory as sources root (via right click, [docs](https://www.jetbrains.com/help/pycharm/content-root.html)). | ||
4. Set | ||
the [working directory of the unit tests](https://www.jetbrains.com/help/pycharm/creating-run-debug-configuration-for-tests.html) | ||
to the project root (instead of the unittest directory). | ||
|
||
### How to use with VS Code | ||
|
||
1. Open the folder with VS Code. | ||
2. **Select the python interpreter** ([official docs](https://code.visualstudio.com/docs/python/environments#_manually-specify-an-interpreter)) which is created by tox. Open the command pallett with `CTRL + P` and type `Python: Select Interpreter`. Select the interpreter which is placed in `.tox/dev/Scripts/python.exe` under Windows or `.tox/dev/bin/python` under Linux and macOS. | ||
3. **Setup pytest and pylint**. Therefore we open the file `.vscode/settings.json` which should be automatically generated during the interpreter setup. Insert the following lines into the settings: | ||
### Documentation | ||
Will be implemented soon | ||
|
||
```json | ||
{ | ||
"python.testing.unittestEnabled": false, | ||
"python.testing.nosetestsEnabled": false, | ||
"python.testing.pytestEnabled": true, | ||
"pythonTestExplorer.testFramework": "pytest", | ||
"python.testing.pytestArgs": [ | ||
"unittests" | ||
], | ||
"python.linting.pylintEnabled": true | ||
} | ||
``` | ||
4. Create a `.env` file and insert the following line | ||
|
||
For Windows: | ||
``` | ||
PYTHONPATH=src;${PYTHONPATH} | ||
``` | ||
For Linux and Mac: | ||
``` | ||
PYTHONPATH=src:${PYTHONPATH} | ||
``` | ||
This makes sure, that the imports are working for the unittests. | ||
At the moment I am not totally sure that it is the best practise, but it's getting the job done. | ||
|
||
5. Enjoy 🤗 | ||
## How to use this Repository on Your Machine | ||
|
||
## Publishing on PyPI | ||
This repository contains all necessary CI steps to publish any project created from it on PyPI. | ||
It just requires some manual adjustments/settings depending on your project: | ||
1. Fill out the metadata in the [`pyproject.toml`](pyproject.toml); Namely the package name and the dependencies which should be in sync with your `requirements.in`. | ||
2. Uncomment the lines in [`.github/workflows/python-publish.yml`](.github/workflows/python-publish.yml) | ||
3. In [your PyPI account create a new API token](https://pypi.org/manage/account/#api-tokens). You have to create a token valid for your entire account first, only when the initial push happened, you can create a new token whose scope is limited to this project. | ||
4. Copy the token and paste it as a new repository secret under `github.com/your-username/your-reponame/settings/secrets/actions/new`. The secrets name should be `PYPI_API_TOKEN` as in the last line of the workflow file you edited in step 2. | ||
5. Now create a release by clicking on "Create new release" in the right Github sidebar (or visit `github.com/your-username/your-reponame/releases/new`). This should trigger the workflow (see the "Actions" tab of your repo). | ||
6. Check if the action failed. If it succeeded your PyPI account should now show the new project. It might take some minutes until the package can be installed via `pip install packagename` because the index has to be updated. | ||
7. Now create another PyPI token with limited scope and update the Github repository secret accordingly. | ||
Follow the instructions in our [Python template repository](https://github.com/Hochfrequenz/python_template_repository#how-to-use-this-repository-on-your-machine). | ||
|
||
## Contribute | ||
|
||
You are very welcome to contribute to this template repository by opening a pull request against the main branch. | ||
You are very welcome to contribute to this repository by opening a pull request against the main branch. |
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,10 @@ | ||
[project] | ||
name = "your-favourite-package-name" | ||
description = "Description of your package" | ||
name = "borm" | ||
description = "A ORM tool to map between SQL databases and bo4e classes" | ||
license = { text = "MIT" } | ||
requires-python = ">=3.11" | ||
authors = [{ name = "your name", email = "[email protected]" }] | ||
keywords = ["your", "important", "keywords"] | ||
authors = [{ name = "Hochfrequenz Unternehmensberatung GmbH", email = "[email protected]" }] | ||
keywords = ["bo4e", "orm", "sql"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Console", | ||
|
@@ -14,13 +14,14 @@ classifiers = [ | |
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12" | ||
] | ||
dependencies = [] # add all the dependencies from requirements.in here, too | ||
dynamic = ["readme", "version"] | ||
|
||
[project.urls] | ||
Changelog = "https://github.com/Hochfrequenz/python_template_repository/releases" | ||
Homepage = "https://github.com/Hochfrequenz/python_template_repository" | ||
Changelog = "https://github.com/Hochfrequenz/bo4e-python-orm/releases" | ||
Homepage = "https://github.com/Hochfrequenz/bo4e-python-orm" | ||
|
||
[tool.black] | ||
line-length = 120 | ||
|
@@ -56,4 +57,4 @@ exclude = ["/unittests"] | |
|
||
[tool.hatch.build.targets.wheel] | ||
only-include = ["src"] | ||
sources = ["src"] | ||
sources = ["src"] |
File renamed without changes.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
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 was deleted.
Oops, something went wrong.