mirror of
https://github.com/nqrduck/LimeDriverBindings.git
synced 2024-11-05 18:20:03 +00:00
Kumi
a8d562c046
Updated .gitignore to exclude distribution directories, preventing accidental inclusion in the repository. Added MANIFEST.in to specify additional files for source distribution, ensuring that necessary Cython and C source files are packaged correctly.
68 lines
No EOL
655 B
Text
68 lines
No EOL
655 B
Text
# Compiled object files
|
|
*.o
|
|
*.obj
|
|
*.lo
|
|
|
|
# Linked and compiled binary files (executables)
|
|
bin/
|
|
*.so
|
|
*.a
|
|
*.out
|
|
*.exe
|
|
|
|
# Autoconf and Automake generated files
|
|
config.h
|
|
config.h.in
|
|
config.status
|
|
autom4te.cache/
|
|
Makefile
|
|
*.m4
|
|
*.autosave
|
|
|
|
# Dependency files generated by gcc
|
|
*.d
|
|
.deps/
|
|
.dirstamp
|
|
|
|
# Archive files
|
|
*.tar
|
|
*.tar.*
|
|
*.tgz
|
|
*.zip
|
|
|
|
# Backup files
|
|
*~
|
|
.*.swp
|
|
*.bak
|
|
*.orig
|
|
|
|
# OS generated files
|
|
.DS_Store*
|
|
ehthumbs.db
|
|
Icon?
|
|
Thumbs.db
|
|
|
|
# Editors' temporary files
|
|
.vscode/
|
|
*.sublime*
|
|
.idea/
|
|
*.swp
|
|
*.*~
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# Python cache data
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Cython / Python build files
|
|
build/
|
|
*.c
|
|
*.cpp
|
|
dist/
|
|
src/limedriver.egg-info
|
|
|
|
# Data
|
|
data/
|
|
venv/ |