.gitignore 2.3 KB

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