cement/.readthedocs.yaml

29 lines
642 B
YAML
Raw Normal View History

2023-08-09 13:39:13 +00:00
# .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 version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
2024-02-29 17:50:00 +00:00
python: "3.12"
2024-02-29 18:06:20 +00:00
apt_packages:
- libmemcached-dev
2023-08-09 13:39:13 +00:00
# Build documentation in the docs/ directory with Sphinx
sphinx:
2024-02-29 17:50:00 +00:00
configuration: docs/source/conf.py
2023-08-09 13:39:13 +00:00
# We recommend specifying your dependencies to enable reproducible builds:
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
2024-02-29 17:50:00 +00:00
python:
install:
2024-02-29 18:15:26 +00:00
- method: pip
path: .
2024-03-12 18:32:46 +00:00
extra_requirements:
- doc
2023-08-09 13:39:13 +00:00