.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. *.egg-info/
  22. .installed.cfg
  23. *.egg
  24. MANIFEST
  25. # PyInstaller
  26. # Usually these files are written by a python script from a template
  27. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  28. *.manifest
  29. *.spec
  30. # Installer logs
  31. pip-log.txt
  32. pip-delete-this-directory.txt
  33. # Unit test / coverage reports
  34. htmlcov/
  35. .tox/
  36. .coverage
  37. .coverage.*
  38. .cache
  39. nosetests.xml
  40. coverage.xml
  41. *.cover
  42. .hypothesis/
  43. # Translations
  44. *.mo
  45. *.pot
  46. # Django stuff:
  47. *.log
  48. .static_storage/
  49. .media/
  50. local_settings.py
  51. # Flask stuff:
  52. instance/
  53. .webassets-cache
  54. # Scrapy stuff:
  55. .scrapy
  56. # Sphinx documentation
  57. docs/_build/
  58. # PyBuilder
  59. target/
  60. # Jupyter Notebook
  61. .ipynb_checkpoints
  62. # pyenv
  63. .python-version
  64. # celery beat schedule file
  65. celerybeat-schedule
  66. # SageMath parsed files
  67. *.sage.py
  68. # Environments
  69. .env
  70. .venv
  71. env/
  72. venv/
  73. ENV/
  74. env.bak/
  75. venv.bak/
  76. # Spyder project settings
  77. .spyderproject
  78. .spyproject
  79. # Rope project settings
  80. .ropeproject
  81. # mkdocs documentation
  82. /site
  83. # mypy
  84. .mypy_cache/
  85. # Pytest
  86. .pytest_cache/
  87. # Default Lakesuperior data directories
  88. lakesuperior/data/ldprs_store
  89. lakesuperior/data/ldpnr_store
  90. # Cython business.
  91. /cython_debug
  92. /lakesuperior/store/*.c
  93. /lakesuperior/store/*.html
  94. /lakesuperior/store/ldp_rs/*.c
  95. /lakesuperior/store/ldp_rs/*.html
  96. /lakesuperior/model/*.c
  97. /lakesuperior/model/*/*.html
  98. /lakesuperior/model/*/*.c
  99. /lakesuperior/model/*.html
  100. /lakesuperior/util/*.c
  101. /lakesuperior/util/*.html
  102. !ext/lib
  103. # Vim CTags file.
  104. tags
  105. !.keep