diff options
| author | 2021-12-30 09:51:00 +0100 | |
|---|---|---|
| committer | 2021-12-30 09:51:00 +0100 | |
| commit | 35de567b2d3c628ecaeabe19d1ebfff80a82a6b0 (patch) | |
| tree | da80d82d68822f5ae2cacbef417964406ce9d935 /.gitignore | |
| download | client-35de567b2d3c628ecaeabe19d1ebfff80a82a6b0.tar.gz client-35de567b2d3c628ecaeabe19d1ebfff80a82a6b0.tar.bz2 client-35de567b2d3c628ecaeabe19d1ebfff80a82a6b0.zip | |
Initial code
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 145 |
1 files changed, 145 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4906f4c --- /dev/null +++ b/.gitignore | |||
| @@ -0,0 +1,145 @@ | |||
| 1 | |||
| 2 | # Created by https://www.toptal.com/developers/gitignore/api/python | ||
| 3 | # Edit at https://www.toptal.com/developers/gitignore?templates=python | ||
| 4 | |||
| 5 | ### Python ### | ||
| 6 | # Byte-compiled / optimized / DLL files | ||
| 7 | __pycache__/ | ||
| 8 | *.py[cod] | ||
| 9 | *$py.class | ||
| 10 | |||
| 11 | # C extensions | ||
| 12 | *.so | ||
| 13 | |||
| 14 | # Distribution / packaging | ||
| 15 | .Python | ||
| 16 | build/ | ||
| 17 | develop-eggs/ | ||
| 18 | dist/ | ||
| 19 | downloads/ | ||
| 20 | eggs/ | ||
| 21 | .eggs/ | ||
| 22 | lib/ | ||
| 23 | lib64/ | ||
| 24 | parts/ | ||
| 25 | sdist/ | ||
| 26 | var/ | ||
| 27 | wheels/ | ||
| 28 | share/python-wheels/ | ||
| 29 | *.egg-info/ | ||
| 30 | .installed.cfg | ||
| 31 | *.egg | ||
| 32 | MANIFEST | ||
| 33 | |||
| 34 | # PyInstaller | ||
| 35 | # Usually these files are written by a python script from a template | ||
| 36 | # before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
| 37 | *.manifest | ||
| 38 | *.spec | ||
| 39 | |||
| 40 | # Installer logs | ||
| 41 | pip-log.txt | ||
| 42 | pip-delete-this-directory.txt | ||
| 43 | |||
| 44 | # Unit test / coverage reports | ||
| 45 | htmlcov/ | ||
| 46 | .tox/ | ||
| 47 | .nox/ | ||
| 48 | .coverage | ||
| 49 | .coverage.* | ||
| 50 | .cache | ||
| 51 | nosetests.xml | ||
| 52 | coverage.xml | ||
| 53 | *.cover | ||
| 54 | *.py,cover | ||
| 55 | .hypothesis/ | ||
| 56 | .pytest_cache/ | ||
| 57 | cover/ | ||
| 58 | |||
| 59 | # Translations | ||
| 60 | *.mo | ||
| 61 | *.pot | ||
| 62 | |||
| 63 | # Django stuff: | ||
| 64 | *.log | ||
| 65 | local_settings.py | ||
| 66 | db.sqlite3 | ||
| 67 | db.sqlite3-journal | ||
| 68 | |||
| 69 | # Flask stuff: | ||
| 70 | instance/ | ||
| 71 | .webassets-cache | ||
| 72 | |||
| 73 | # Scrapy stuff: | ||
| 74 | .scrapy | ||
| 75 | |||
| 76 | # Sphinx documentation | ||
| 77 | docs/_build/ | ||
| 78 | |||
| 79 | # PyBuilder | ||
| 80 | .pybuilder/ | ||
| 81 | target/ | ||
| 82 | |||
| 83 | # Jupyter Notebook | ||
| 84 | .ipynb_checkpoints | ||
| 85 | |||
| 86 | # IPython | ||
| 87 | profile_default/ | ||
| 88 | ipython_config.py | ||
| 89 | |||
| 90 | # pyenv | ||
| 91 | # For a library or package, you might want to ignore these files since the code is | ||
| 92 | # intended to run in multiple environments; otherwise, check them in: | ||
| 93 | # .python-version | ||
| 94 | |||
| 95 | # pipenv | ||
| 96 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. | ||
| 97 | # However, in case of collaboration, if having platform-specific dependencies or dependencies | ||
| 98 | # having no cross-platform support, pipenv may install dependencies that don't work, or not | ||
| 99 | # install all needed dependencies. | ||
| 100 | #Pipfile.lock | ||
| 101 | |||
| 102 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow | ||
| 103 | __pypackages__/ | ||
| 104 | |||
| 105 | # Celery stuff | ||
| 106 | celerybeat-schedule | ||
| 107 | celerybeat.pid | ||
| 108 | |||
| 109 | # SageMath parsed files | ||
| 110 | *.sage.py | ||
| 111 | |||
| 112 | # Environments | ||
| 113 | .env | ||
| 114 | .venv | ||
| 115 | env/ | ||
| 116 | venv/ | ||
| 117 | ENV/ | ||
| 118 | env.bak/ | ||
| 119 | venv.bak/ | ||
| 120 | |||
| 121 | # Spyder project settings | ||
| 122 | .spyderproject | ||
| 123 | .spyproject | ||
| 124 | |||
| 125 | # Rope project settings | ||
| 126 | .ropeproject | ||
| 127 | |||
| 128 | # mkdocs documentation | ||
| 129 | /site | ||
| 130 | |||
| 131 | # mypy | ||
| 132 | .mypy_cache/ | ||
| 133 | .dmypy.json | ||
| 134 | dmypy.json | ||
| 135 | |||
| 136 | # Pyre type checker | ||
| 137 | .pyre/ | ||
| 138 | |||
| 139 | # pytype static type analyzer | ||
| 140 | .pytype/ | ||
| 141 | |||
| 142 | # Cython debug symbols | ||
| 143 | cython_debug/ | ||
| 144 | |||
| 145 | # End of https://www.toptal.com/developers/gitignore/api/python | ||
