An open API service indexing awesome lists of open source software.

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.

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
```