diff options
| author | Fuwn <[email protected]> | 2022-03-23 01:01:33 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-03-23 01:01:33 -0700 |
| commit | 4462f6f8cd4d307f4ae180ed0a180628f3ba762f (patch) | |
| tree | fc7b80f76de66967a9f2365debf9a644dea98cf5 /.gitignore | |
| download | sen-py-4462f6f8cd4d307f4ae180ed0a180628f3ba762f.tar.xz sen-py-4462f6f8cd4d307f4ae180ed0a180628f3ba762f.zip | |
feat: 0.1.0 :star:
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..af3ca5e --- /dev/null +++ b/.gitignore @@ -0,0 +1,72 @@ +/target + +# Byte-compiled / optimized / DLL files +__pycache__/ +.pytest_cache/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +.venv/ +env/ +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +include/ +man/ +venv/ +*.egg-info/ +.installed.cfg +*.egg + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt +pip-selfcheck.json + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +# Rope +.ropeproject + +# Django stuff: +*.log +*.pot + +.DS_Store + +# Sphinx documentation +docs/_build/ + +# PyCharm +.idea/ + +# VSCode +.vscode/ + +# Pyenv +.python-version
\ No newline at end of file |