Skip to content

Commit f59ff8c

Browse files
author
Vivek Gopalakrishnan
authored
Merge pull request #15 from PSSF23/zero
Remove unnecessary mac files and update .gitignore
2 parents 300dd65 + 2b85a03 commit f59ff8c

2 files changed

Lines changed: 213 additions & 0 deletions

File tree

.DS_Store

-10 KB
Binary file not shown.

.gitignore

Lines changed: 213 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,215 @@
11
_site/
22

3+
# Created by https://www.toptal.com/developers/gitignore/api/macos,windows,python,linux
4+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows,python,linux
5+
6+
### Linux ###
7+
*~
8+
9+
# temporary files which can be created if a process still has a handle open of a deleted file
10+
.fuse_hidden*
11+
12+
# KDE directory preferences
13+
.directory
14+
15+
# Linux trash folder which might appear on any partition or disk
16+
.Trash-*
17+
18+
# .nfs files are created when an open file is removed but is still being accessed
19+
.nfs*
20+
21+
### macOS ###
22+
# General
23+
.DS_Store
24+
.AppleDouble
25+
.LSOverride
26+
27+
# Icon must end with two \r
28+
Icon
29+
30+
# Thumbnails
31+
._*
32+
33+
# Files that might appear in the root of a volume
34+
.DocumentRevisions-V100
35+
.fseventsd
36+
.Spotlight-V100
37+
.TemporaryItems
38+
.Trashes
39+
.VolumeIcon.icns
40+
.com.apple.timemachine.donotpresent
41+
42+
# Directories potentially created on remote AFP share
43+
.AppleDB
44+
.AppleDesktop
45+
Network Trash Folder
46+
Temporary Items
47+
.apdisk
48+
49+
### Python ###
50+
# Byte-compiled / optimized / DLL files
51+
__pycache__/
52+
*.py[cod]
53+
*$py.class
54+
55+
# C extensions
56+
*.so
57+
58+
# Distribution / packaging
59+
.Python
60+
build/
61+
develop-eggs/
62+
dist/
63+
downloads/
64+
eggs/
65+
.eggs/
66+
lib/
67+
lib64/
68+
parts/
69+
sdist/
70+
var/
71+
wheels/
72+
pip-wheel-metadata/
73+
share/python-wheels/
74+
*.egg-info/
75+
.installed.cfg
76+
*.egg
77+
MANIFEST
78+
79+
# PyInstaller
80+
# Usually these files are written by a python script from a template
81+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
82+
*.manifest
83+
*.spec
84+
85+
# Installer logs
86+
pip-log.txt
87+
pip-delete-this-directory.txt
88+
89+
# Unit test / coverage reports
90+
htmlcov/
91+
.tox/
92+
.nox/
93+
.coverage
94+
.coverage.*
95+
.cache
96+
nosetests.xml
97+
coverage.xml
98+
*.cover
99+
*.py,cover
100+
.hypothesis/
101+
.pytest_cache/
102+
pytestdebug.log
103+
104+
# Translations
105+
*.mo
106+
*.pot
107+
108+
# Django stuff:
109+
*.log
110+
local_settings.py
111+
db.sqlite3
112+
db.sqlite3-journal
113+
114+
# Flask stuff:
115+
instance/
116+
.webassets-cache
117+
118+
# Scrapy stuff:
119+
.scrapy
120+
121+
# Sphinx documentation
122+
docs/_build/
123+
doc/_build/
124+
125+
# PyBuilder
126+
target/
127+
128+
# Jupyter Notebook
129+
.ipynb_checkpoints
130+
131+
# IPython
132+
profile_default/
133+
ipython_config.py
134+
135+
# pyenv
136+
.python-version
137+
138+
# pipenv
139+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
140+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
141+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
142+
# install all needed dependencies.
143+
#Pipfile.lock
144+
145+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
146+
__pypackages__/
147+
148+
# Celery stuff
149+
celerybeat-schedule
150+
celerybeat.pid
151+
152+
# SageMath parsed files
153+
*.sage.py
154+
155+
# Environments
156+
.env
157+
.venv
158+
env/
159+
venv/
160+
ENV/
161+
env.bak/
162+
venv.bak/
163+
pythonenv*
164+
165+
# Spyder project settings
166+
.spyderproject
167+
.spyproject
168+
169+
# Rope project settings
170+
.ropeproject
171+
172+
# mkdocs documentation
173+
/site
174+
175+
# mypy
176+
.mypy_cache/
177+
.dmypy.json
178+
dmypy.json
179+
180+
# Pyre type checker
181+
.pyre/
182+
183+
# pytype static type analyzer
184+
.pytype/
185+
186+
# profiling data
187+
.prof
188+
189+
### Windows ###
190+
# Windows thumbnail cache files
191+
Thumbs.db
192+
Thumbs.db:encryptable
193+
ehthumbs.db
194+
ehthumbs_vista.db
195+
196+
# Dump file
197+
*.stackdump
198+
199+
# Folder config file
200+
[Dd]esktop.ini
201+
202+
# Recycle Bin used on file shares
203+
$RECYCLE.BIN/
204+
205+
# Windows Installer files
206+
*.cab
207+
*.msi
208+
*.msix
209+
*.msm
210+
*.msp
211+
212+
# Windows shortcuts
213+
*.lnk
214+
215+
# End of https://www.toptal.com/developers/gitignore/api/macos,windows,python,linux

0 commit comments

Comments
 (0)