1- Byte-compiled / optimized / DLL files
1+ # Byte-compiled / optimized / DLL files
22__pycache__ /
3- * .py [co ]
3+ * .py [cod ]
44* $py.class
55
6+ # C extensions
7+ * .so
8+
69# Distribution / packaging
710.Python
811build /
1720sdist /
1821var /
1922wheels /
23+ share /python-wheels /
2024* .egg-info /
2125.installed.cfg
2226* .egg
@@ -42,8 +46,10 @@ htmlcov/
4246nosetests.xml
4347coverage.xml
4448* .cover
49+ * .py,cover
4550.hypothesis /
4651.pytest_cache /
52+ cover /
4753
4854# Translations
4955* .mo
@@ -53,6 +59,7 @@ coverage.xml
5359* .log
5460local_settings.py
5561db.sqlite3
62+ db.sqlite3-journal
5663
5764# Flask stuff:
5865instance /
@@ -65,6 +72,7 @@ instance/
6572docs /_build /
6673
6774# PyBuilder
75+ .pybuilder /
6876target /
6977
7078# Jupyter Notebook
@@ -75,10 +83,38 @@ profile_default/
7583ipython_config.py
7684
7785# pyenv
78- .python-version
79-
80- # celery beat schedule file
86+ # For a library or package, you might want to ignore these files since the code is
87+ # intended to run in multiple environments; otherwise, check them in:
88+ # .python-version
89+
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+
97+ # poetry
98+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100+ # commonly ignored for libraries.
101+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102+ # poetry.lock
103+
104+ # pdm
105+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106+ # pdm.lock
107+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108+ # in version control.
109+ # https://pdm.fming.dev/#use-with-ide
110+ .pdm.toml
111+
112+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113+ __pypackages__ /
114+
115+ # Celery stuff
81116celerybeat-schedule
117+ celerybeat.pid
82118
83119# SageMath parsed files
84120* .sage.py
91127ENV /
92128env.bak /
93129venv.bak /
130+ .venv *
131+ venv *
94132
95133# Spyder project settings
96134.spyderproject
@@ -107,22 +145,28 @@ venv.bak/
107145.dmypy.json
108146dmypy.json
109147
110- # big weather
111- CuritibaRioSaoPauloEnsemble_2018_ERA-5.nc
112- CuritibaRioSaoPaulo_2018_ERA-5.nc
113- CuritibaRioSaoPaulo_2017_ERA-5.nc
114- CuritibaRioSaoPaulo_2016_ERA-5.nc
115- CuritibaRioSaoPaulo_2015_ERA-5.nc
116- fetchCuritibaRioSaoPaulo.py
117- fetchCuritibaRioSaoPauloEnsemble.py
148+ # Pyre type checker
149+ .pyre /
150+
151+ # pytype static type analyzer
152+ .pytype /
153+
154+ # Cython debug symbols
155+ cython_debug /
118156
119- # docs
157+ # Docs
120158* .docx
121159* .pdf
122160
123- # VS Code
161+ # VSCode project settings
124162.vscode /
125163
126- # Tests
127- naboI /
164+ # PyCharm
165+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
166+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
167+ # and can be added to the global gitignore or merged into this file. For a more nuclear
168+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
169+ .idea /
128170
171+ # Mac
172+ .DS_Store
0 commit comments