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
- Host: GitHub
- URL: https://github.com/boechat107/py-template-project
- Owner: boechat107
- Created: 2018-05-05T16:56:17.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-02T12:59:44.000Z (about 6 years ago)
- Last Synced: 2025-01-21T13:25:54.906Z (4 months ago)
- Topics: new-project, python, template
- Language: Python
- Size: 2.93 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```