Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/machow/template-python-pkg
https://github.com/machow/template-python-pkg
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/machow/template-python-pkg
- Owner: machow
- License: mit
- Created: 2022-03-05T16:58:34.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-05T19:50:07.000Z (almost 3 years ago)
- Last Synced: 2024-11-19T04:01:09.935Z (about 2 months ago)
- Language: Python
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# template-python-pkg
## Developing
```shell
# install with development dependencies
pip install -e .[dev]# or install from requirements file
pip install -r requirements/dev.txt
```## Testing
```shell
# run all tests, see pytest section of pyproject.toml
pytest# run specific marks
pytest -m ex2# stop on first failure, drop into debugger
pytest -x --pdb
```## Setting version number
```shell
# set version number
git tag v0.0.1# (optional) push to github
git push origin --tags# check version
python -m setuptools_scm
```