https://github.com/donovan-said/template-python-github-repository
A repository to use as a template for python repositories.
https://github.com/donovan-said/template-python-github-repository
github-template python
Last synced: 3 months ago
JSON representation
A repository to use as a template for python repositories.
- Host: GitHub
- URL: https://github.com/donovan-said/template-python-github-repository
- Owner: donovan-said
- License: mit
- Created: 2024-02-19T10:04:49.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-21T14:46:17.000Z (almost 2 years ago)
- Last Synced: 2025-07-27T19:50:42.698Z (5 months ago)
- Topics: github-template, python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Template Python Github Repository
A repository to use as a template for Pythion repositories.
## Requirements
| Tool | Description |
| :----------------------------------------- | :------------------------------ |
| [Pipenv](https://pypi.org/project/pipenv/) | Required to manahe pip packages |
## Setup
### pipenv
Pipenv is used to manage all python dependencies.
```shell
pip install pipenv
```
```shell
pipenv install -d
```
```shell
pipenv shell
```