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

https://github.com/boechat107/py-template-project

My template project for Python applications
https://github.com/boechat107/py-template-project

new-project python template

Last synced: 2 months ago
JSON representation

My template project for Python applications

Awesome Lists containing this project

README

        

# Python Project Template

This is my template project for Python applications.

The project includes scripts to correctly install and test the application, in
addition to type checking annotated code with Mypy.

## Usage

### New Project

1. Clone this repository
2. Run the following command line:

```bash
./py-project-template/rename.sh
```

### Install in Dev Mode

```bash
make dev_install
```

### Run Tests

```bash
# Runs pytest and Mypy.
make check
```