Skip to content

Commit f4a6a30

Browse files
committed
create notebooks/ and resources/ folders
1 parent 1b326d0 commit f4a6a30

4 files changed

Lines changed: 16 additions & 13 deletions

File tree

.gitignore

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -55,19 +55,6 @@ coverage.xml
5555
*.mo
5656
*.pot
5757

58-
# Django stuff:
59-
*.log
60-
local_settings.py
61-
db.sqlite3
62-
db.sqlite3-journal
63-
64-
# Flask stuff:
65-
instance/
66-
.webassets-cache
67-
68-
# Scrapy stuff:
69-
.scrapy
70-
7158
# Sphinx documentation
7259
docs/_build/
7360

@@ -130,3 +117,7 @@ dmypy.json
130117

131118
# Ruff
132119
.ruff_cache/
120+
121+
# JetBrains IDEs
122+
.idea/
123+
.junie/memory/

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,11 @@ exclude *.yml
2323
exclude *.yaml
2424
exclude *.toml
2525

26+
# Exclude git and github files
2627
prune .git
2728
prune .github
2829
prune notebook*
30+
prune resources*
2931
prune temp*
3032
prune test*
3133
prune docs*

notebooks/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Notebooks
2+
3+
This folder is intended for storing Jupyter notebooks related to exploration, data analysis, and experimentation for the Kaggle challenges.
4+
5+
Please format notebooks as Python scripts using `# %%` for cell markers to ensure compatibility and better version control tracking.

resources/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Resources
2+
3+
This folder is intended for storing external resources, such as datasets, images, pretrained models, or other supporting files required for the project.
4+
5+
It also serves as a place for project notes, development plans, and relevant external documentation.

0 commit comments

Comments
 (0)