echo "๐Ÿงน Starting code cleanup and publishing process..." echo "โšซ Running Black formatter..." black . && echo "โœ… Code formatting complete!" || echo "โŒ Black formatting failed!" echo "๐Ÿ” Running Ruff linter..." ruff check . --fix && echo "โœ… Linting complete!" || echo "โŒ Linting failed!" echo "๐Ÿ—๏ธ Building package..." poetry build && echo "โœ… Build successful!" || echo "โŒ Build failed!" echo "๐Ÿ“ฆ Publishing to PyPI..." poetry publish && echo "โœ… Package published!" || echo "โŒ Publishing failed!" echo "๐Ÿ“ Committing changes to Git..." git add . && echo "โœ… Changes staged!" git commit -m "Update and publish" && echo "โœ… Changes committed!" echo "๐Ÿš€ Pushing to remote repository..." git push && echo "โœ… Changes pushed to remote!" echo "โœจ All done! Package cleaned, built, and published successfully! โœจ"