https://github.com/tpvasconcelos/python-library-template
Contains all the boilerplate you need to create a Python package.
https://github.com/tpvasconcelos/python-library-template
Last synced: 5 months ago
JSON representation
Contains all the boilerplate you need to create a Python package.
- Host: GitHub
- URL: https://github.com/tpvasconcelos/python-library-template
- Owner: tpvasconcelos
- Created: 2021-07-25T11:35:41.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-07-14T15:48:09.000Z (almost 4 years ago)
- Last Synced: 2025-04-09T19:53:25.742Z (about 1 year ago)
- Language: Makefile
- Size: 94.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Library Template (cookiecutter)
This is a highly opinionated template.
## Setting up a new project
I would suggest that you [search PyPi](https://pypi.org/search/) and check which library names are (not)
available. Follow the next steps only after settling on an available name.
This template was implemented using [Cookiecutter](https://github.com/cookiecutter/cookiecutter). You will
need the utility [installed](https://cookiecutter.readthedocs.io/en/1.7.2/installation.html) to generate the
template on you local machine.
```shell
pip install --user --upgrade cookiecutter
```
To generate a new project directory from this template, run
```shell
cookiecutter gh:tpvasconcelos/python-library-template
```