.gitignore 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. # temporary
  2. src/unfccc_ghg_data/datasets
  3. # loging
  4. log/*
  5. geckodriver.log
  6. # private dev code
  7. /JG_test_code/
  8. # Notebooks
  9. *.ipynb
  10. # Databases
  11. *.db
  12. # Jupyter cache
  13. .jupyter_cache
  14. # Licence check
  15. licence-check.txt
  16. # Byte-compiled / optimized / DLL files
  17. __pycache__/
  18. *.py[cod]
  19. *$py.class
  20. # C extensions
  21. *.so
  22. # Distribution / packaging
  23. .Python
  24. build/
  25. develop-eggs/
  26. dist/
  27. downloads/
  28. eggs/
  29. .eggs/
  30. lib/
  31. lib64/
  32. parts/
  33. sdist/
  34. var/
  35. wheels/
  36. pip-wheel-metadata/
  37. share/python-wheels/
  38. *.egg-info/
  39. .installed.cfg
  40. *.egg
  41. MANIFEST
  42. # PyInstaller
  43. # Usually these files are written by a python script from a template
  44. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  45. *.manifest
  46. *.spec
  47. # Installer logs
  48. pip-log.txt
  49. pip-delete-this-directory.txt
  50. # Unit test / coverage reports
  51. htmlcov/
  52. .tox/
  53. .nox/
  54. .coverage
  55. .coverage.*
  56. .cache
  57. nosetests.xml
  58. coverage.xml
  59. *.cover
  60. *.py,cover
  61. .hypothesis/
  62. .pytest_cache/
  63. # Translations
  64. *.mo
  65. *.pot
  66. # Django stuff:
  67. *.log
  68. local_settings.py
  69. db.sqlite3
  70. db.sqlite3-journal
  71. # Flask stuff:
  72. instance/
  73. .webassets-cache
  74. # Scrapy stuff:
  75. .scrapy
  76. # Sphinx documentation
  77. docs/_build/
  78. # PyBuilder
  79. target/
  80. # Jupyter Notebook
  81. .ipynb_checkpoints
  82. # IPython
  83. profile_default/
  84. ipython_config.py
  85. # pyenv
  86. .python-version
  87. # pipenv
  88. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  89. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  90. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  91. # install all needed dependencies.
  92. #Pipfile.lock
  93. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  94. __pypackages__/
  95. # Celery stuff
  96. celerybeat-schedule
  97. celerybeat.pid
  98. # SageMath parsed files
  99. *.sage.py
  100. # Environments
  101. .env
  102. .venv
  103. env/
  104. venv/
  105. ENV/
  106. env.bak/
  107. venv.bak/
  108. # Spyder project settings
  109. .spyderproject
  110. .spyproject
  111. # pycharm settings
  112. .idea
  113. # Rope project settings
  114. .ropeproject
  115. # mkdocs documentation
  116. /site
  117. # mypy
  118. .mypy_cache/
  119. .dmypy.json
  120. dmypy.json
  121. # Pyre type checker
  122. .pyre/
  123. # Mac stuff
  124. *.DS_Store