https://github.com/markdouthwaite/minimal-python-project
https://github.com/markdouthwaite/minimal-python-project
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/markdouthwaite/minimal-python-project
- Owner: markdouthwaite
- License: mit
- Created: 2021-12-21T18:11:10.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-21T19:59:07.000Z (almost 4 years ago)
- Last Synced: 2025-06-27T01:49:56.980Z (3 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# minimal-python-project
This is a template project with some basic clean code automation built-in.
You could use this project as anything you want, from a package to a microservice to a
data pipeline. Your imagination is the limit :unicorn:.## Getting started
### Running source
To run the source code, simply run:
```bash
python src/main.py
```You should see:
```text
Hello, world!
```Add your code to this directory.
### Running tests
```bash
make install-dev
``````bash
make test
```### Running checks
```bash
make install-dev
``````bash
make check
```