summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2020-12-21 23:51:28 -0500
committerOwen Jacobson <owen@grimoire.ca>2020-12-21 23:51:28 -0500
commit19dc9eebd45efc01c14eec6b15fe2fb285f058b7 (patch)
treeba98d718c66f69b44cadb37cd25893f2bb8b7c0b
parent5959c623204b221cd4efe413db1d0ae2f42d9108 (diff)
Ignore setup.py outputs.
This should allow packaging the program without littering scm with spurious changes.
-rw-r--r--.gitignore10
1 files changed, 8 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 206e68b..a1b52c5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,8 +2,8 @@
# when loaded.
/.direnv/
-# Generated metadata created by `pip install`, `setup.py sdist`, and friends.
-# Will be reconstituted from setup.py as needed.
+# Generated metadata created by `pip install`, `python setup.py sdist`, and
+# friends. Will be reconstituted from setup.py as needed.
*.egg-info
# Compiled Python bytecode. Will be regenerated on import, for the current
@@ -13,3 +13,9 @@
# Dependencies installed via setup_requires; will be recreated from setuptools
# as needed.
/.eggs/
+
+# Intermediate build artifacts generated by `python setup.py sdist`.
+/build/
+
+# Final outputs generated by `python setup.py bdist`.
+/dist/