Skip to content

Commit

Permalink
use the python default gitignore
Browse files Browse the repository at this point in the history
I simply used the python global gitignore and removed everything related to the wheel builder that are not related to this project (namely poetry, hatch, pdm) and things related to pycharm. 

I added back the MacOs `.DS_Store` at the bottom. 

I did this because in another PR I added stuff related to nox and all folder went in the last commit. I think it cost nothing to have a wider gitignore and make sure that new tools can be brought to the package without ignore issues.
  • Loading branch information
12rambau authored Oct 2, 2024
1 parent 27eda3e commit 871ff97
Showing 1 changed file with 129 additions and 10 deletions.
139 changes: 129 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,130 @@
*.egg-info
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py


# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# MacOS
.DS_Store
build
dist
docs/.ipynb_checkpoints
docs/_build
docs/source/_autosummary
docs/source/.ipynb_checkpoints
docs/*.zarr
__pycache__
.pytest_cache

0 comments on commit 871ff97

Please sign in to comment.