A brief description of your project goes here.
(Example: zpypro is a Python project for ...)
- Flat project structure for simplicity and quick prototyping
- Modern dependency management via
pyproject.toml - Dynamic logging: Outputs logs to both the terminal and a log file, with log file location determined using
appdirsfor portability - YAML-based logging configuration for easy customization
git clone https://github.com/yourusername/zpypro.git
cd zpyproTo install dependencies using uv:
- Compile dependencies from
pyproject.tomlto a requirements file:uv pip compile pyproject.toml > requirements.txt - Install dependencies from the generated requirements file:
uv pip install -r requirements.txt
# Example usage command
python main.pyPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.