Skip to content

Commit ddcbc70

Browse files
Maksymilian Graczykmaksgraczyk
Maksymilian Graczyk
authored andcommitted
Create .gitignore
1 parent e1eb9c1 commit ddcbc70

File tree

1 file changed

+191
-0
lines changed

1 file changed

+191
-0
lines changed

.gitignore

+191
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,191 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/python,emacs
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=python,emacs
3+
4+
### Emacs ###
5+
# -*- mode: gitignore; -*-
6+
*~
7+
\#*\#
8+
/.emacs.desktop
9+
/.emacs.desktop.lock
10+
*.elc
11+
auto-save-list
12+
tramp
13+
.\#*
14+
15+
# Org-mode
16+
.org-id-locations
17+
*_archive
18+
19+
# flymake-mode
20+
*_flymake.*
21+
22+
# eshell files
23+
/eshell/history
24+
/eshell/lastdir
25+
26+
# elpa packages
27+
/elpa/
28+
29+
# reftex files
30+
*.rel
31+
32+
# AUCTeX auto folder
33+
/auto/
34+
35+
# cask packages
36+
.cask/
37+
dist/
38+
39+
# Flycheck
40+
flycheck_*.el
41+
42+
# server auth directory
43+
/server/
44+
45+
# projectiles files
46+
.projectile
47+
48+
# directory configuration
49+
.dir-locals.el
50+
51+
# network security
52+
/network-security.data
53+
54+
55+
### Python ###
56+
# Byte-compiled / optimized / DLL files
57+
__pycache__/
58+
*.py[cod]
59+
*$py.class
60+
61+
# C extensions
62+
*.so
63+
64+
# Distribution / packaging
65+
.Python
66+
build/
67+
develop-eggs/
68+
downloads/
69+
eggs/
70+
.eggs/
71+
lib/
72+
lib64/
73+
parts/
74+
sdist/
75+
var/
76+
wheels/
77+
pip-wheel-metadata/
78+
share/python-wheels/
79+
*.egg-info/
80+
.installed.cfg
81+
*.egg
82+
MANIFEST
83+
84+
# PyInstaller
85+
# Usually these files are written by a python script from a template
86+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
87+
*.manifest
88+
*.spec
89+
90+
# Installer logs
91+
pip-log.txt
92+
pip-delete-this-directory.txt
93+
94+
# Unit test / coverage reports
95+
htmlcov/
96+
.tox/
97+
.nox/
98+
.coverage
99+
.coverage.*
100+
.cache
101+
nosetests.xml
102+
coverage.xml
103+
*.cover
104+
*.py,cover
105+
.hypothesis/
106+
.pytest_cache/
107+
pytestdebug.log
108+
109+
# Translations
110+
*.mo
111+
*.pot
112+
113+
# Django stuff:
114+
*.log
115+
local_settings.py
116+
db.sqlite3
117+
db.sqlite3-journal
118+
119+
# Flask stuff:
120+
instance/
121+
.webassets-cache
122+
123+
# Scrapy stuff:
124+
.scrapy
125+
126+
# Sphinx documentation
127+
docs/_build/
128+
doc/_build/
129+
130+
# PyBuilder
131+
target/
132+
133+
# Jupyter Notebook
134+
.ipynb_checkpoints
135+
136+
# IPython
137+
profile_default/
138+
ipython_config.py
139+
140+
# pyenv
141+
.python-version
142+
143+
# pipenv
144+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
145+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
146+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
147+
# install all needed dependencies.
148+
#Pipfile.lock
149+
150+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
151+
__pypackages__/
152+
153+
# Celery stuff
154+
celerybeat-schedule
155+
celerybeat.pid
156+
157+
# SageMath parsed files
158+
*.sage.py
159+
160+
# Environments
161+
.env
162+
.venv
163+
env/
164+
venv/
165+
ENV/
166+
env.bak/
167+
venv.bak/
168+
169+
# Spyder project settings
170+
.spyderproject
171+
.spyproject
172+
173+
# Rope project settings
174+
.ropeproject
175+
176+
# mkdocs documentation
177+
/site
178+
179+
# mypy
180+
.mypy_cache/
181+
.dmypy.json
182+
dmypy.json
183+
184+
# Pyre type checker
185+
.pyre/
186+
187+
# pytype static type analyzer
188+
.pytype/
189+
190+
# End of https://www.toptal.com/developers/gitignore/api/python,emacs
191+

0 commit comments

Comments
 (0)