cart-elc

Source code for CART-ELC
git clone git://git.laack.co/cart-elc.git
Log | Files | Refs | README | LICENSE

.gitignore (3634B)


      1 # ---> C++
      2 # Prerequisites
      3 *.d
      4 # graphs and such
      5 *.html
      6 
      7 # Compiled Object files
      8 *.slo
      9 *.lo
     10 *.o
     11 *.obj
     12 
     13 # Precompiled Headers
     14 *.gch
     15 *.pch
     16 
     17 # Compiled Dynamic libraries
     18 *.so
     19 *.dylib
     20 *.dll
     21 
     22 # Fortran module files
     23 *.mod
     24 *.smod
     25 
     26 # Compiled Static libraries
     27 *.lai
     28 *.la
     29 *.a
     30 *.lib
     31 
     32 # Executables
     33 *.exe
     34 *.out
     35 *.app
     36 
     37 # ---> Python
     38 # Byte-compiled / optimized / DLL files
     39 __pycache__/
     40 *.py[cod]
     41 *$py.class
     42 
     43 # C extensions
     44 *.so
     45 
     46 # Distribution / packaging
     47 .Python
     48 build/
     49 datasets/
     50 develop-eggs/
     51 dist/
     52 downloads/
     53 eggs/
     54 .eggs/
     55 #lib/
     56 lib64/
     57 parts/
     58 sdist/
     59 var/
     60 wheels/
     61 share/python-wheels/
     62 *.egg-info/
     63 .installed.cfg
     64 *.egg
     65 MANIFEST
     66 
     67 # PyInstaller
     68 #  Usually these files are written by a python script from a template
     69 #  before PyInstaller builds the exe, so as to inject date/other infos into it.
     70 *.manifest
     71 *.spec
     72 
     73 # Installer logs
     74 pip-log.txt
     75 pip-delete-this-directory.txt
     76 
     77 # Unit test / coverage reports
     78 htmlcov/
     79 .tox/
     80 .nox/
     81 .coverage
     82 .coverage.*
     83 .cache
     84 nosetests.xml
     85 coverage.xml
     86 *.cover
     87 *.py,cover
     88 .hypothesis/
     89 .pytest_cache/
     90 cover/
     91 
     92 # Translations
     93 *.mo
     94 *.pot
     95 
     96 # Django stuff:
     97 *.log
     98 local_settings.py
     99 db.sqlite3
    100 db.sqlite3-journal
    101 
    102 # Flask stuff:
    103 instance/
    104 .webassets-cache
    105 
    106 # Scrapy stuff:
    107 .scrapy
    108 
    109 # Sphinx documentation
    110 docs/_build/
    111 
    112 # PyBuilder
    113 .pybuilder/
    114 target/
    115 
    116 # Jupyter Notebook
    117 .ipynb_checkpoints
    118 
    119 # IPython
    120 profile_default/
    121 ipython_config.py
    122 
    123 # pyenv
    124 #   For a library or package, you might want to ignore these files since the code is
    125 #   intended to run in multiple environments; otherwise, check them in:
    126 # .python-version
    127 
    128 # pipenv
    129 #   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
    130 #   However, in case of collaboration, if having platform-specific dependencies or dependencies
    131 #   having no cross-platform support, pipenv may install dependencies that don't work, or not
    132 #   install all needed dependencies.
    133 #Pipfile.lock
    134 
    135 # poetry
    136 #   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
    137 #   This is especially recommended for binary packages to ensure reproducibility, and is more
    138 #   commonly ignored for libraries.
    139 #   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
    140 #poetry.lock
    141 
    142 # pdm
    143 #   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
    144 #pdm.lock
    145 #   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
    146 #   in version control.
    147 #   https://pdm.fming.dev/#use-with-ide
    148 .pdm.toml
    149 
    150 # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
    151 __pypackages__/
    152 
    153 # Celery stuff
    154 celerybeat-schedule
    155 celerybeat.pid
    156 
    157 # SageMath parsed files
    158 *.sage.py
    159 
    160 # Environments
    161 .env
    162 .venv
    163 env/
    164 venv/
    165 ENV/
    166 env.bak/
    167 venv.bak/
    168 
    169 # Spyder project settings
    170 .spyderproject
    171 .spyproject
    172 
    173 # Rope project settings
    174 .ropeproject
    175 
    176 # mkdocs documentation
    177 /site
    178 
    179 # mypy
    180 .mypy_cache/
    181 .dmypy.json
    182 dmypy.json
    183 
    184 # Pyre type checker
    185 .pyre/
    186 
    187 # pytype static type analyzer
    188 .pytype/
    189 
    190 # Cython debug symbols
    191 cython_debug/
    192 
    193 # PyCharm
    194 #  JetBrains specific template is maintained in a separate JetBrains.gitignore that can
    195 #  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
    196 #  and can be added to the global gitignore or merged into this file.  For a more nuclear
    197 #  option (not recommended) you can uncomment the following to ignore the entire idea folder.
    198 #.idea/
    199 
    200 # ---> CMake
    201 CMakeLists.txt.user
    202 CMakeCache.txt
    203 CMakeFiles
    204 CMakeScripts
    205 Testing
    206 # Makefile
    207 cmake_install.cmake
    208 install_manifest.txt
    209 compile_commands.json
    210 CTestTestfile.cmake
    211 _deps
    212 
    213 *.png
    214 *.jpg
    215 *.log
    216 *.out
    217 *.aux
    218 *.toc
    219 *.vrb