annotate .gitignore @ 455:7dae98b84cdd tip master

Merge branch 'master' of https://github.com/amsehili/auditok
author www-data <www-data@c4dm-xenserv-virt2.eecs.qmul.ac.uk>
date Tue, 03 Dec 2024 09:18:01 +0000
parents 8e11b5108d69
children
rev   line source
amine@3 1 web/
sehili@1 2 *pyc
amine@3 3 auditok/__pycache__
amine@3 4 .*.swp
amine@3 5 *~
amine@3 6 .pydevproject
amine@3 7 .project
amine@42 8 TODO
amine@430 9
amine@430 10 # Byte-compiled / optimized / DLL files
amine@430 11 __pycache__/
amine@430 12 *.py[cod]
amine@430 13 *$py.class
amine@430 14
amine@430 15 # C extensions
amine@430 16 *.so
amine@430 17
amine@430 18 # Distribution / packaging
amine@430 19 .Python
amine@430 20 build/
amine@430 21 develop-eggs/
amine@430 22 dist/
amine@430 23 tags/
amine@430 24 downloads/
amine@430 25 eggs/
amine@430 26 .eggs/
amine@430 27 lib/
amine@430 28 lib64/
amine@430 29 parts/
amine@430 30 sdist/
amine@430 31 var/
amine@430 32 wheels/
amine@430 33 share/python-wheels/
amine@430 34 *.egg-info/
amine@430 35 .installed.cfg
amine@430 36 *.egg
amine@430 37 MANIFEST
amine@430 38 MANIFEST.in
amine@430 39
amine@430 40 # PyInstaller
amine@430 41 # Usually these files are written by a python script from a template
amine@430 42 # before PyInstaller builds the exe, so as to inject date/other infos into it.
amine@430 43 *.manifest
amine@430 44 *.spec
amine@430 45
amine@430 46 # Installer logs
amine@430 47 pip-log.txt
amine@430 48 pip-delete-this-directory.txt
amine@430 49
amine@430 50 # Unit test / coverage reports
amine@430 51 htmlcov/
amine@430 52 .tox/
amine@430 53 .nox/
amine@430 54 .coverage
amine@430 55 .coverage.*
amine@430 56 .cache
amine@430 57 nosetests.xml
amine@430 58 coverage.xml
amine@430 59 *.cover
amine@430 60 *.py,cover
amine@430 61 .hypothesis/
amine@430 62 .pytest_cache/
amine@430 63 cover/
amine@430 64
amine@430 65 # Translations
amine@430 66 *.mo
amine@430 67 *.pot
amine@430 68
amine@430 69 # Django stuff:
amine@430 70 *.log
amine@430 71 local_settings.py
amine@430 72 db.sqlite3
amine@430 73 db.sqlite3-journal
amine@430 74
amine@430 75 # Flask stuff:
amine@430 76 instance/
amine@430 77 .webassets-cache
amine@430 78
amine@430 79 # Scrapy stuff:
amine@430 80 .scrapy__pycache__
amine@430 81
amine@430 82 # PyBuilder
amine@430 83 .pybuilder/
amine@430 84 target/
amine@430 85
amine@430 86 # Jupyter Notebook
amine@430 87 .ipynb_checkpoints
amine@430 88
amine@430 89 # IPython
amine@430 90 profile_default/
amine@430 91 ipython_config.py__pycache__
amine@430 92
amine@430 93 # pyenv
amine@430 94 # For a library or package, you might want to ignore these files since the code is
amine@430 95 # intended to run in multiple environments; otherwise, check them in:
amine@430 96 .python-version
amine@430 97
amine@430 98 # pipenv
amine@430 99 # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
amine@430 100 # However, in case of collaboration, if having platform-specific dependencies or dependencies
amine@430 101 # having no cross-platform support, pipenv may install dependencies that don't work, or not
amine@430 102 # install all needed dependencies.
amine@430 103 Pipfile.lock
amine@430 104
amine@430 105 # poetry
amine@430 106 # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
amine@430 107 # This is especially recommended for binary packages to ensure reproducibility, and is more
amine@430 108 # commonly ignored for libraries.
amine@430 109 # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
amine@430 110 poetry.lock
amine@430 111
amine@430 112 # pdm
amine@430 113 # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
amine@430 114 pdm.lock
amine@430 115
amine@430 116 # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
amine@430 117 # in version control.
amine@430 118 # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
amine@430 119 .pdm.toml
amine@430 120 .pdm-python
amine@430 121 .pdm-build/
amine@430 122
amine@430 123 # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
amine@430 124 __pypackages__/
amine@430 125
amine@430 126 # Celery stuff
amine@430 127 celerybeat-schedule
amine@430 128 celerybeat.pid
amine@430 129
amine@430 130 # SageMath parsed files
amine@430 131 *.sage.py
amine@430 132
amine@430 133 # Environments
amine@430 134 .env
amine@430 135 .venv
amine@430 136 env/
amine@430 137 venv/
amine@430 138 ENV/
amine@430 139 env.bak/
amine@430 140 venv.bak/
amine@430 141
amine@430 142 # Spyder project settings
amine@430 143 .spyderproject
amine@430 144 .spyproject
amine@430 145
amine@430 146 # Rope project settings
amine@430 147 .ropeproject
amine@430 148
amine@430 149 # mkdocs documentation
amine@430 150 /site
amine@430 151
amine@430 152 # mypy
amine@430 153 .mypy_cache/
amine@430 154 .dmypy.json
amine@430 155 dmypy.json
amine@430 156
amine@430 157 # Pyre type checker
amine@430 158 .pyre/
amine@430 159
amine@430 160 # pytype static type analyzer
amine@430 161 .pytype/
amine@430 162
amine@430 163 # Cython debug symbols
amine@430 164 cython_debug/
amine@430 165
amine@430 166 # macOS specific files
amine@430 167 .DS_Store
amine@430 168 .AppleDouble
amine@430 169 .LSOverride
amine@430 170 Icon?
amine@430 171 __MACOSX
amine@430 172
amine@430 173 # Thumbnails
amine@430 174 *.sublime-workspace
amine@430 175 *.sublime-project
amine@430 176
amine@430 177 # macOS Finder directory metadata
amine@430 178 *.DS_Store
amine@430 179 *.AppleDouble
amine@430 180 *.LSOverride
amine@430 181 *.Icon*
amine@430 182 *.__MACOSX