Ensemble des jeux de données que nous allons utilisé pour notre projet (obsolète)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

550 lines
8.8 KiB

2 years ago
  1. # ---> MicrosoftOffice
  2. *.tmp
  3. # Word temporary
  4. ~$*.doc*
  5. # Word Auto Backup File
  6. Backup of *.doc*
  7. # Excel temporary
  8. ~$*.xls*
  9. # Excel Backup File
  10. *.xlk
  11. # PowerPoint temporary
  12. ~$*.ppt*
  13. # Visio autosave temporary files
  14. *.~vsd*
  15. # ---> Python
  16. # Byte-compiled / optimized / DLL files
  17. __pycache__/
  18. *.py[cod]
  19. *$py.class
  20. # C extensions
  21. *.so
  22. # Distribution / packaging
  23. .Python
  24. build/
  25. develop-eggs/
  26. dist/
  27. downloads/
  28. eggs/
  29. .eggs/
  30. lib/
  31. lib64/
  32. parts/
  33. sdist/
  34. var/
  35. wheels/
  36. share/python-wheels/
  37. *.egg-info/
  38. .installed.cfg
  39. *.egg
  40. MANIFEST
  41. # PyInstaller
  42. # Usually these files are written by a python script from a template
  43. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  44. *.manifest
  45. *.spec
  46. # Installer logs
  47. pip-log.txt
  48. pip-delete-this-directory.txt
  49. # Unit test / coverage reports
  50. htmlcov/
  51. .tox/
  52. .nox/
  53. .coverage
  54. .coverage.*
  55. .cache
  56. nosetests.xml
  57. coverage.xml
  58. *.cover
  59. *.py,cover
  60. .hypothesis/
  61. .pytest_cache/
  62. cover/
  63. # Translations
  64. *.mo
  65. *.pot
  66. # Django stuff:
  67. *.log
  68. local_settings.py
  69. db.sqlite3
  70. db.sqlite3-journal
  71. # Flask stuff:
  72. instance/
  73. .webassets-cache
  74. # Scrapy stuff:
  75. .scrapy
  76. # Sphinx documentation
  77. docs/_build/
  78. # PyBuilder
  79. .pybuilder/
  80. target/
  81. # Jupyter Notebook
  82. .ipynb_checkpoints
  83. # IPython
  84. profile_default/
  85. ipython_config.py
  86. # pyenv
  87. # For a library or package, you might want to ignore these files since the code is
  88. # intended to run in multiple environments; otherwise, check them in:
  89. # .python-version
  90. # pipenv
  91. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  92. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  93. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  94. # install all needed dependencies.
  95. #Pipfile.lock
  96. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  97. __pypackages__/
  98. # Celery stuff
  99. celerybeat-schedule
  100. celerybeat.pid
  101. # SageMath parsed files
  102. *.sage.py
  103. # Environments
  104. .env
  105. .venv
  106. env/
  107. venv/
  108. ENV/
  109. env.bak/
  110. venv.bak/
  111. # Spyder project settings
  112. .spyderproject
  113. .spyproject
  114. # Rope project settings
  115. .ropeproject
  116. # mkdocs documentation
  117. /site
  118. # mypy
  119. .mypy_cache/
  120. .dmypy.json
  121. dmypy.json
  122. # Pyre type checker
  123. .pyre/
  124. # pytype static type analyzer
  125. .pytype/
  126. # Cython debug symbols
  127. cython_debug/
  128. # ---> JupyterNotebooks
  129. # gitignore template for Jupyter Notebooks
  130. # website: http://jupyter.org/
  131. .ipynb_checkpoints
  132. */.ipynb_checkpoints/*
  133. # IPython
  134. profile_default/
  135. ipython_config.py
  136. # Remove previous ipynb_checkpoints
  137. # git rm -r .ipynb_checkpoints/
  138. # ---> VisualStudio
  139. ## Ignore Visual Studio temporary files, build results, and
  140. ## files generated by popular Visual Studio add-ons.
  141. ##
  142. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  143. # User-specific files
  144. *.rsuser
  145. *.suo
  146. *.user
  147. *.userosscache
  148. *.sln.docstates
  149. # User-specific files (MonoDevelop/Xamarin Studio)
  150. *.userprefs
  151. # Mono auto generated files
  152. mono_crash.*
  153. # Build results
  154. [Dd]ebug/
  155. [Dd]ebugPublic/
  156. [Rr]elease/
  157. [Rr]eleases/
  158. x64/
  159. x86/
  160. [Ww][Ii][Nn]32/
  161. [Aa][Rr][Mm]/
  162. [Aa][Rr][Mm]64/
  163. bld/
  164. [Bb]in/
  165. [Oo]bj/
  166. [Ll]og/
  167. [Ll]ogs/
  168. # Visual Studio 2015/2017 cache/options directory
  169. .vs/
  170. # Uncomment if you have tasks that create the project's static files in wwwroot
  171. #wwwroot/
  172. # Visual Studio 2017 auto generated files
  173. Generated\ Files/
  174. # MSTest test Results
  175. [Tt]est[Rr]esult*/
  176. [Bb]uild[Ll]og.*
  177. # NUnit
  178. *.VisualState.xml
  179. TestResult.xml
  180. nunit-*.xml
  181. # Build Results of an ATL Project
  182. [Dd]ebugPS/
  183. [Rr]eleasePS/
  184. dlldata.c
  185. # Benchmark Results
  186. BenchmarkDotNet.Artifacts/
  187. # .NET Core
  188. project.lock.json
  189. project.fragment.lock.json
  190. artifacts/
  191. # ASP.NET Scaffolding
  192. ScaffoldingReadMe.txt
  193. # StyleCop
  194. StyleCopReport.xml
  195. # Files built by Visual Studio
  196. *_i.c
  197. *_p.c
  198. *_h.h
  199. *.ilk
  200. *.meta
  201. *.obj
  202. *.iobj
  203. *.pch
  204. *.pdb
  205. *.ipdb
  206. *.pgc
  207. *.pgd
  208. *.rsp
  209. *.sbr
  210. *.tlb
  211. *.tli
  212. *.tlh
  213. *.tmp
  214. *.tmp_proj
  215. *_wpftmp.csproj
  216. *.log
  217. *.vspscc
  218. *.vssscc
  219. .builds
  220. *.pidb
  221. *.svclog
  222. *.scc
  223. # Chutzpah Test files
  224. _Chutzpah*
  225. # Visual C++ cache files
  226. ipch/
  227. *.aps
  228. *.ncb
  229. *.opendb
  230. *.opensdf
  231. *.sdf
  232. *.cachefile
  233. *.VC.db
  234. *.VC.VC.opendb
  235. # Visual Studio profiler
  236. *.psess
  237. *.vsp
  238. *.vspx
  239. *.sap
  240. # Visual Studio Trace Files
  241. *.e2e
  242. # TFS 2012 Local Workspace
  243. $tf/
  244. # Guidance Automation Toolkit
  245. *.gpState
  246. # ReSharper is a .NET coding add-in
  247. _ReSharper*/
  248. *.[Rr]e[Ss]harper
  249. *.DotSettings.user
  250. # TeamCity is a build add-in
  251. _TeamCity*
  252. # DotCover is a Code Coverage Tool
  253. *.dotCover
  254. # AxoCover is a Code Coverage Tool
  255. .axoCover/*
  256. !.axoCover/settings.json
  257. # Coverlet is a free, cross platform Code Coverage Tool
  258. coverage*.json
  259. coverage*.xml
  260. coverage*.info
  261. # Visual Studio code coverage results
  262. *.coverage
  263. *.coveragexml
  264. # NCrunch
  265. _NCrunch_*
  266. .*crunch*.local.xml
  267. nCrunchTemp_*
  268. # MightyMoose
  269. *.mm.*
  270. AutoTest.Net/
  271. # Web workbench (sass)
  272. .sass-cache/
  273. # Installshield output folder
  274. [Ee]xpress/
  275. # DocProject is a documentation generator add-in
  276. DocProject/buildhelp/
  277. DocProject/Help/*.HxT
  278. DocProject/Help/*.HxC
  279. DocProject/Help/*.hhc
  280. DocProject/Help/*.hhk
  281. DocProject/Help/*.hhp
  282. DocProject/Help/Html2
  283. DocProject/Help/html
  284. # Click-Once directory
  285. publish/
  286. # Publish Web Output
  287. *.[Pp]ublish.xml
  288. *.azurePubxml
  289. # Note: Comment the next line if you want to checkin your web deploy settings,
  290. # but database connection strings (with potential passwords) will be unencrypted
  291. *.pubxml
  292. *.publishproj
  293. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  294. # checkin your Azure Web App publish settings, but sensitive information contained
  295. # in these scripts will be unencrypted
  296. PublishScripts/
  297. # NuGet Packages
  298. *.nupkg
  299. # NuGet Symbol Packages
  300. *.snupkg
  301. # The packages folder can be ignored because of Package Restore
  302. **/[Pp]ackages/*
  303. # except build/, which is used as an MSBuild target.
  304. !**/[Pp]ackages/build/
  305. # Uncomment if necessary however generally it will be regenerated when needed
  306. #!**/[Pp]ackages/repositories.config
  307. # NuGet v3's project.json files produces more ignorable files
  308. *.nuget.props
  309. *.nuget.targets
  310. # Microsoft Azure Build Output
  311. csx/
  312. *.build.csdef
  313. # Microsoft Azure Emulator
  314. ecf/
  315. rcf/
  316. # Windows Store app package directories and files
  317. AppPackages/
  318. BundleArtifacts/
  319. Package.StoreAssociation.xml
  320. _pkginfo.txt
  321. *.appx
  322. *.appxbundle
  323. *.appxupload
  324. # Visual Studio cache files
  325. # files ending in .cache can be ignored
  326. *.[Cc]ache
  327. # but keep track of directories ending in .cache
  328. !?*.[Cc]ache/
  329. # Others
  330. ClientBin/
  331. ~$*
  332. *~
  333. *.dbmdl
  334. *.dbproj.schemaview
  335. *.jfm
  336. *.pfx
  337. *.publishsettings
  338. orleans.codegen.cs
  339. # Including strong name files can present a security risk
  340. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  341. #*.snk
  342. # Since there are multiple workflows, uncomment next line to ignore bower_components
  343. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  344. #bower_components/
  345. # RIA/Silverlight projects
  346. Generated_Code/
  347. # Backup & report files from converting an old project file
  348. # to a newer Visual Studio version. Backup files are not needed,
  349. # because we have git ;-)
  350. _UpgradeReport_Files/
  351. Backup*/
  352. UpgradeLog*.XML
  353. UpgradeLog*.htm
  354. ServiceFabricBackup/
  355. *.rptproj.bak
  356. # SQL Server files
  357. *.mdf
  358. *.ldf
  359. *.ndf
  360. # Business Intelligence projects
  361. *.rdl.data
  362. *.bim.layout
  363. *.bim_*.settings
  364. *.rptproj.rsuser
  365. *- [Bb]ackup.rdl
  366. *- [Bb]ackup ([0-9]).rdl
  367. *- [Bb]ackup ([0-9][0-9]).rdl
  368. # Microsoft Fakes
  369. FakesAssemblies/
  370. # GhostDoc plugin setting file
  371. *.GhostDoc.xml
  372. # Node.js Tools for Visual Studio
  373. .ntvs_analysis.dat
  374. node_modules/
  375. # Visual Studio 6 build log
  376. *.plg
  377. # Visual Studio 6 workspace options file
  378. *.opt
  379. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  380. *.vbw
  381. # Visual Studio LightSwitch build output
  382. **/*.HTMLClient/GeneratedArtifacts
  383. **/*.DesktopClient/GeneratedArtifacts
  384. **/*.DesktopClient/ModelManifest.xml
  385. **/*.Server/GeneratedArtifacts
  386. **/*.Server/ModelManifest.xml
  387. _Pvt_Extensions
  388. # Paket dependency manager
  389. .paket/paket.exe
  390. paket-files/
  391. # FAKE - F# Make
  392. .fake/
  393. # CodeRush personal settings
  394. .cr/personal
  395. # Python Tools for Visual Studio (PTVS)
  396. __pycache__/
  397. *.pyc
  398. # Cake - Uncomment if you are using it
  399. # tools/**
  400. # !tools/packages.config
  401. # Tabs Studio
  402. *.tss
  403. # Telerik's JustMock configuration file
  404. *.jmconfig
  405. # BizTalk build output
  406. *.btp.cs
  407. *.btm.cs
  408. *.odx.cs
  409. *.xsd.cs
  410. # OpenCover UI analysis results
  411. OpenCover/
  412. # Azure Stream Analytics local run output
  413. ASALocalRun/
  414. # MSBuild Binary and Structured Log
  415. *.binlog
  416. # NVidia Nsight GPU debugger configuration file
  417. *.nvuser
  418. # MFractors (Xamarin productivity tool) working folder
  419. .mfractor/
  420. # Local History for Visual Studio
  421. .localhistory/
  422. # BeatPulse healthcheck temp database
  423. healthchecksdb
  424. # Backup folder for Package Reference Convert tool in Visual Studio 2017
  425. MigrationBackup/
  426. # Ionide (cross platform F# VS Code tools) working folder
  427. .ionide/
  428. # Fody - auto-generated XML schema
  429. FodyWeavers.xsd
  430. # ---> VisualStudioCode
  431. .vscode/*
  432. !.vscode/settings.json
  433. !.vscode/tasks.json
  434. !.vscode/launch.json
  435. !.vscode/extensions.json
  436. *.code-workspace
  437. # Local History for Visual Studio Code
  438. .history/