Files
TZERO78 45d4d89f0c feat: Major refactor of config management and password handling
- Updated config.py to improve configuration management with secure password handling.
- Introduced a new Config class to encapsulate configuration loading, validation, and password management.
- Enhanced password generation and storage mechanisms, including support for systemd-creds and password files.
- Created a default configuration template with improved security notes and instructions.
- Added validation checks for repository paths and password configurations.
- Updated dependencies.py and system_utils.py to correct import paths.
- Added new entry points for console scripts in entry_points.txt.
- Updated package metadata for version 2.0.0, including license and dependencies.
- Added MANIFEST.in to include necessary files in the package distribution.
- Created executable scripts for kopi-docka and kopi-docka-service.
2025-10-01 16:52:44 +02:00

7 lines
180 B
Plaintext

cat > MANIFEST.in << 'EOF'
include README.md
include LICENSE
include requirements.txt
recursive-include kopi_docka/templates *.conf
recursive-include kopi_docka/templates *.ini
EOF