python_skeleton/skeleton/README.md

34 lines
731 B
Markdown
Raw Normal View History

2021-01-13 16:17:31 +01:00
# __project_codename__
2021-01-13 16:10:29 +01:00
## Requirements
## Installation
### Linux
2024-11-16 22:08:53 +01:00
To install for example in your ~/.local/bin folder:
```bash
./install.sh --destination ~/.local/bin
```
To install system-wide:
```bash
sudo ./install.sh --destination /usr/local/bin
2022-12-26 17:22:13 +01:00
```
2021-01-13 16:10:29 +01:00
2024-11-16 22:08:53 +01:00
Change your configuration file in "${HOME}/.config/__project_codename__.conf" (see the example in the config folder).
2021-01-13 16:10:29 +01:00
### Windows (from PowerShell)
2024-11-12 09:40:12 +01:00
Ensure you have "C:\Users\${env:USERNAME}\AppData\Roaming\Python\Python${python_version}\Scripts\" in your Path environment variable.
2022-12-26 17:22:13 +01:00
```powershell
2024-11-12 09:40:12 +01:00
& $(where.exe pip).split()[0] install .
2022-12-26 17:22:13 +01:00
```
2021-01-13 16:10:29 +01:00
## Usage
2022-12-26 17:22:13 +01:00
```bash
2024-11-16 22:08:53 +01:00
__project_codename__.sh [--debug-level|-d CRITICAL|ERROR|WARNING|INFO|DEBUG|NOTSET] # Other parameters
2022-12-26 17:22:13 +01:00
```