.gitignore 1.8 KB

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