This project has been migrated from the legacy setup.py to the modern pyproject.toml build system following PEP 518/621 standards.
# Install the package
pip install .
# Install system files (Linux/Unix only)
python install_system_files.py# Install in development mode
pip install -e .
# Install with development dependencies
pip install -e .[dev]setup.pyis now deprecated in favor ofpyproject.tomlinstall_system_files.pyhandles platform-specific file installation- Modern build backend using setuptools with declarative configuration
- Dynamic version resolution from
cleaner.__version__
# Build source and wheel distributions
pip install build
python -m build
# Install from wheel
pip install dist/recodex_cleaner-*.whlThe migration maintains backward compatibility while providing a cleaner, more standard Python packaging experience.