Skip to content

Commit

Permalink
Merge pull request #6 from statisticsnorway/release001
Browse files Browse the repository at this point in the history
Release001
  • Loading branch information
joxssb authored Feb 12, 2024
2 parents 34eba8e + c4b8cb2 commit 8685773
Show file tree
Hide file tree
Showing 6 changed files with 589 additions and 19 deletions.
102 changes: 86 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
# This .gitignore file is based on SSB's recommended gitignore template stored
# in: https://github.com/statisticsnorway/kvakk-git-tools
# It contains three sections: SSB specific ignores, GitHub's Python-ignore
# template and GitHub's R-ignore template.


# The section below contains SSB specific ignores, not included in the Python-
# and R-ignores from GitHub.
*.csv
*.db
*.feather
*.parquet
*.sas7bdat
*.xls
*.xlsx
*.zip

# The section below is from the GitHub .gitignore template for Python:
# https://raw.githubusercontent.com/github/gitignore/main/Python.gitignore

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
.poetry/cache/

# C extensions
*.so
Expand All @@ -20,7 +41,6 @@ parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
Expand Down Expand Up @@ -50,6 +70,7 @@ coverage.xml
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
Expand All @@ -72,6 +93,7 @@ instance/
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
Expand All @@ -81,17 +103,13 @@ target/
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# pdm
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/#use-with-ide
.pdm.toml

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
Expand Down Expand Up @@ -128,9 +146,61 @@ dmypy.json
# Pyre type checker
.pyre/

# PyCharm
.idea/
# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# The section below is from the GitHub .gitignore template for R:
# https://raw.githubusercontent.com/github/gitignore/main/R.gitignore

# History files
.Rhistory
.Rapp.history

# Session Data files
.RData
.RDataTmp

# User-specific files
.Ruserdata

# Example code in package build process
*-Ex.R

# Output files from R CMD build
/*.tar.gz

# Output files from R CMD check
/*.Rcheck/

# RStudio files
.Rproj.user/

# produced vignettes
vignettes/*.html
vignettes/*.pdf

# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth

# knitr and R markdown default cache directories
*_cache/
/cache/

# Temporary files created by R markdown
*.utf8.md
*.knit.md

# R Environment Variables
.Renviron

# translation temp files
po/*~

# RStudio Connect folder
rsconnect/

/.python-version
/.pytype/
/docs/_build/
# ignore poetry in .config
.poetry/**
Loading

0 comments on commit 8685773

Please sign in to comment.