Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

.gitignore 2.0 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
  1. *~
  2. *.rsync_backup
  3. /scripts
  4. /configs
  5. /troubleshoot
  6. # always keep the .keep files so we preserve directory structure, even
  7. # if there are no files. This is useful for generating files from some
  8. # literate file (i.e. building them)
  9. !**/.keep
  10. # dask
  11. dask-worker-space
  12. /hpcc/**/submissions/*
  13. /hpcc/**/tasks/*
  14. /hpcc/**/test_jobs/
  15. /tmp
  16. /hpcc/wepy/jobs/*
  17. /hpcc/standalone/jobs/*
  18. /src/wepy.lyszoyme_test.egg-info/
  19. # Created by https://www.gitignore.io/api/python
  20. # Edit at https://www.gitignore.io/?templates=python
  21. ### Python ###
  22. # Byte-compiled / optimized / DLL files
  23. __pycache__/
  24. *.py[cod]
  25. *$py.class
  26. # C extensions
  27. *.so
  28. # Distribution / packaging
  29. .Python
  30. build/
  31. develop-eggs/
  32. dist/
  33. downloads/
  34. eggs/
  35. .eggs/
  36. lib/
  37. lib64/
  38. parts/
  39. sdist/
  40. var/
  41. wheels/
  42. pip-wheel-metadata/
  43. share/python-wheels/
  44. *.egg-info/
  45. .installed.cfg
  46. *.egg
  47. MANIFEST
  48. # PyInstaller
  49. # Usually these files are written by a python script from a template
  50. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  51. *.manifest
  52. *.spec
  53. # Installer logs
  54. pip-log.txt
  55. pip-delete-this-directory.txt
  56. # Unit test / coverage reports
  57. htmlcov/
  58. .tox/
  59. .nox/
  60. .coverage
  61. .coverage.*
  62. .cache
  63. nosetests.xml
  64. coverage.xml
  65. *.cover
  66. .hypothesis/
  67. .pytest_cache/
  68. # Translations
  69. *.mo
  70. *.pot
  71. # Scrapy stuff:
  72. .scrapy
  73. # Sphinx documentation
  74. docs/_build/
  75. # PyBuilder
  76. target/
  77. # pyenv
  78. .python-version
  79. # pipenv
  80. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  81. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  82. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  83. # install all needed dependencies.
  84. #Pipfile.lock
  85. # celery beat schedule file
  86. celerybeat-schedule
  87. # SageMath parsed files
  88. *.sage.py
  89. # Spyder project settings
  90. .spyderproject
  91. .spyproject
  92. # Rope project settings
  93. .ropeproject
  94. # Mr Developer
  95. .mr.developer.cfg
  96. .project
  97. .pydevproject
  98. # mkdocs documentation
  99. /site
  100. # mypy
  101. .mypy_cache/
  102. .dmypy.json
  103. dmypy.json
  104. # Pyre type checker
  105. .pyre/
  106. # End of https://www.gitignore.io/api/python
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...