mirror of
https://github.com/nqrduck/LimeDriverBindings.git
synced 2024-11-05 18:20:03 +00:00
Kumi
0465a51a46
Enhanced the .gitignore to filter out additional build artifacts and Python cache files, promoting a cleaner repository state. Introduced a basic project structure with a new pyproject.toml, defining metadata and build requirements for the 'limedriver' Python package. Also added a LICENSE file and a custom setup.py which automates the retrieval and build of 'limedriver' submodules, streamlining the set-up for development and ensuring consistent builds across environments. These changes lay the groundwork for further development and distribution of the project.
66 lines
No EOL
643 B
Text
66 lines
No EOL
643 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
|
|
src/limedriver.egg-info
|
|
|
|
# Data
|
|
data/
|
|
venv/ |