.gitignore 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. pysinsy/version.py
  2. pysinsy/sinsy.cpp
  3. docs/generated
  4. sample.*
  5. # Created by https://www.gitignore.io
  6. ### Python ###
  7. # Byte-compiled / optimized / DLL files
  8. __pycache__/
  9. *.py[cod]
  10. # C extensions
  11. *.so
  12. # Distribution / packaging
  13. .Python
  14. env/
  15. build/
  16. develop-eggs/
  17. dist/
  18. downloads/
  19. eggs/
  20. lib/
  21. lib64/
  22. parts/
  23. sdist/
  24. var/
  25. *.egg-info/
  26. .installed.cfg
  27. *.egg
  28. # PyInstaller
  29. # Usually these files are written by a python script from a template
  30. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  31. *.manifest
  32. *.spec
  33. # Installer logs
  34. pip-log.txt
  35. pip-delete-this-directory.txt
  36. # Unit test / coverage reports
  37. htmlcov/
  38. .tox/
  39. .coverage
  40. .cache
  41. nosetests.xml
  42. coverage.xml
  43. # Translations
  44. *.mo
  45. *.pot
  46. # Django stuff:
  47. *.log
  48. # Sphinx documentation
  49. docs/_build/
  50. # PyBuilder
  51. target/
  52. ### IPythonNotebook ###
  53. # Temporary data
  54. .ipynb_checkpoints/
  55. ### SublimeText ###
  56. # cache files for sublime text
  57. *.tmlanguage.cache
  58. *.tmPreferences.cache
  59. *.stTheme.cache
  60. # workspace files are user-specific
  61. *.sublime-workspace
  62. # project files should be checked into the repository, unless a significant
  63. # proportion of contributors will probably not be using SublimeText
  64. # *.sublime-project
  65. # sftp configuration file
  66. sftp-config.json
  67. ### Emacs ###
  68. # -*- mode: gitignore; -*-
  69. *~
  70. \#*\#
  71. /.emacs.desktop
  72. /.emacs.desktop.lock
  73. *.elc
  74. auto-save-list
  75. tramp
  76. .\#*
  77. # Org-mode
  78. .org-id-locations
  79. *_archive
  80. # flymake-mode
  81. *_flymake.*
  82. # eshell files
  83. /eshell/history
  84. /eshell/lastdir
  85. # elpa packages
  86. /elpa/
  87. # reftex files
  88. *.rel
  89. # AUCTeX auto folder
  90. /auto/
  91. # cask packages
  92. .cask/
  93. ### Vim ###
  94. [._]*.s[a-w][a-z]
  95. [._]s[a-w][a-z]
  96. *.un~
  97. Session.vim
  98. .netrwhist
  99. *~
  100. ### C++ ###
  101. # Compiled Object files
  102. *.slo
  103. *.lo
  104. *.o
  105. *.obj
  106. # Precompiled Headers
  107. *.gch
  108. *.pch
  109. # Compiled Dynamic libraries
  110. *.so
  111. *.dylib
  112. *.dll
  113. # Fortran module files
  114. *.mod
  115. # Compiled Static libraries
  116. *.lai
  117. *.la
  118. *.a
  119. *.lib
  120. # Executables
  121. *.exe
  122. *.out
  123. *.app
  124. ### OSX ###
  125. .DS_Store
  126. .AppleDouble
  127. .LSOverride
  128. # Icon must end with two \r
  129. Icon
  130. # Thumbnails
  131. ._*
  132. # Files that might appear on external disk
  133. .Spotlight-V100
  134. .Trashes
  135. # Directories potentially created on remote AFP share
  136. .AppleDB
  137. .AppleDesktop
  138. Network Trash Folder
  139. Temporary Items
  140. .apdisk
  141. ### Linux ###
  142. *~
  143. # KDE directory preferences
  144. .directory
  145. # Linux trash folder which might appear on any partition or disk
  146. .Trash-*