diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..ab7d60b --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,24 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the OS, Python version and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.12" + +# Build documentation in the "docs/" directory with Sphinx +sphinx: + configuration: docs/conf.py + +# Optional but recommended, declare the Python requirements required +# to build your documentation +# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +python: + install: + - requirements: requirements.txt + - requirements: requirements-dev.txt diff --git a/requirements-doc.txt b/requirements-dev.txt similarity index 65% rename from requirements-doc.txt rename to requirements-dev.txt index cb7a9d9..32a46c6 100644 --- a/requirements-doc.txt +++ b/requirements-dev.txt @@ -1,4 +1,5 @@ sphinx toml sphinx_rtd_theme -nbsphinx \ No newline at end of file +nbsphinx +pytest \ No newline at end of file diff --git a/requirements-test.txt b/requirements-test.txt deleted file mode 100644 index 55b033e..0000000 --- a/requirements-test.txt +++ /dev/null @@ -1 +0,0 @@ -pytest \ No newline at end of file