Skip to content

Commit 9a34635

Browse files
authored
Merge pull request #16 from tidesdb/feat/python-bindings-arch
feat(core): redesign Python bindings architecture for v0.5.0
2 parents 6ee75a8 + f34afae commit 9a34635

19 files changed

Lines changed: 1298 additions & 547 deletions

.gitignore

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Project Specifics
2+
/cfoundation
3+
samples/*_output/
4+
/tidesdb.egg-info
5+
6+
# Python
17
# Byte-compiled / optimized / DLL files
28
__pycache__/
39
*.py[cod]
@@ -160,3 +166,128 @@ cython_debug/
160166
# and can be added to the global gitignore or merged into this file. For a more nuclear
161167
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
162168
#.idea/
169+
170+
# C .gitignore
171+
# Prerequisites
172+
*.d
173+
174+
# Object files
175+
*.o
176+
*.ko
177+
*.obj
178+
*.elf
179+
180+
# Linker output
181+
*.ilk
182+
*.map
183+
*.exp
184+
185+
# Precompiled Headers
186+
*.gch
187+
*.pch
188+
189+
# Libraries
190+
*.lib
191+
*.a
192+
*.la
193+
*.lo
194+
195+
# Shared objects (inc. Windows DLLs)
196+
*.dll
197+
*.so
198+
*.so.*
199+
*.dylib
200+
201+
# Executables
202+
*.exe
203+
*.out
204+
*.app
205+
*.i*86
206+
*.x86_64
207+
*.hex
208+
209+
# Debug files
210+
*.dSYM/
211+
*.su
212+
*.idb
213+
*.pdb
214+
215+
# Kernel Module Compile Results
216+
*.mod*
217+
*.cmd
218+
.tmp_versions/
219+
modules.order
220+
Module.symvers
221+
Mkfile.old
222+
dkms.conf
223+
224+
# macOS .gitignore
225+
# General
226+
.DS_Store
227+
.AppleDouble
228+
.LSOverride
229+
230+
# Icon must end with two \r
231+
Icon
232+
Icon?
233+
234+
# Thumbnails
235+
._*
236+
237+
# Files that might appear in the root of a volume
238+
.DocumentRevisions-V100
239+
.fseventsd
240+
.Spotlight-V100
241+
.TemporaryItems
242+
.Trashes
243+
.VolumeIcon.icns
244+
.com.apple.timemachine.donotpresent
245+
246+
# Directories potentially created on remote AFP share
247+
.AppleDB
248+
.AppleDesktop
249+
Network Trash Folder
250+
Temporary Items
251+
.apdisk
252+
253+
# Windows .gitignore
254+
# Windows thumbnail cache files
255+
Thumbs.db
256+
Thumbs.db:encryptable
257+
ehthumbs.db
258+
ehthumbs_vista.db
259+
260+
# Dump file
261+
*.stackdump
262+
263+
# Folder config file
264+
[Dd]esktop.ini
265+
266+
# Recycle Bin used on file shares
267+
$RECYCLE.BIN/
268+
269+
# Windows Installer files
270+
*.cab
271+
*.msi
272+
*.msix
273+
*.msm
274+
*.msp
275+
276+
# Windows shortcuts
277+
*.lnk
278+
279+
# Linux .gitignore
280+
# gitginore template for creating Snap packages
281+
# website: https://snapcraft.io/
282+
283+
parts/
284+
prime/
285+
stage/
286+
*.snap
287+
288+
# Snapcraft global state tracking data(automatically generated)
289+
# https://forum.snapcraft.io/t/location-to-save-global-state/768
290+
/snap/.snapcraft/
291+
292+
# Source archive packed by `snapcraft cleanbuild` before pushing to the LXD container
293+
/*_source.tar.bz2

0 commit comments

Comments
 (0)