diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2020-12-21 23:51:28 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2020-12-21 23:51:28 -0500 |
| commit | 19dc9eebd45efc01c14eec6b15fe2fb285f058b7 (patch) | |
| tree | ba98d718c66f69b44cadb37cd25893f2bb8b7c0b | |
| parent | 5959c623204b221cd4efe413db1d0ae2f42d9108 (diff) | |
Ignore setup.py outputs.
This should allow packaging the program without littering scm with
spurious changes.
| -rw-r--r-- | .gitignore | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -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/ |
