Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release preparation #2

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
25 changes: 25 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# LICENSE HEADER MANAGED BY add-license-header
#
# SPDX-FileCopyrightText: Copyright 2024 German Cancer Research Center (DKFZ) and contributors.
# SPDX-License-Identifier: MIT
#

version: 2
build:
os: ubuntu-22.04
tools:
python: "3.10"

# build documentation in the docs/ directory with sphinx
sphinx:
configuration: docs/source/conf.py
builder: html
fail_on_warning: false

# dependencies required to build docs
python:
install:
- method: pip
path: .
extra_requirements:
- docs
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# local settings e.g. regarding paths, also contains tokens
src/mml/mml.env
# any potential virtual environment
venv/
# intelliJ data
.idea/*
# dev install files
src/mml_core.egg-info/
plugins/*/src/*.egg-info
# cache files
/**/__pycache__/
/**/.pytest_cache/
/**/.mypy_cache/
/**/.coverage
# space to summarize your experiments
/notebooks/
# report files
/unit_test_report.xml
/coverage_report.xml
# locally generated tox files
/.tox/
# locally generated documentation
/docs/build/
# pytest benchmark files
.benchmarks
# potential test builds
/build/
#Visual Studio Code configuration Files
.vscode
Loading
Loading