Ignore and clean up `.egg-info dirs in src/` subdir of packages

This commit is contained in:
Nicola Soranzo
2026-04-16 15:46:38 +01:00
parent b888927ff3
commit 61bec48cdb
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -12,7 +12,7 @@ scripts/scramble/archives
# Python build artifacts
build
dist
lib/galaxy.egg-info
*.egg-info/
.eggs
# Generated static content
@@ -165,7 +165,6 @@ client/webpack-stats.json
# Packages
packages/*/build
packages/*/dist
packages/*/*.egg-info
packages/meta/requirements.txt
# Standalone script + main, or build into dist
+1 -1
View File
@@ -32,7 +32,7 @@ clean: clean-build clean-pyc clean-tests
clean-build:
rm -fr build/
rm -fr $(DIST)/
rm -fr galaxy_*.egg-info
find . -name "*.egg-info" -type d -exec rm -rf {} +
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +