Skip to content

Commit 37c07c8

Browse files
authored
Merge branch 'main' into 829-languagecountry-selection
2 parents ce25b6a + 3108793 commit 37c07c8

File tree

5 files changed

+50
-5
lines changed

5 files changed

+50
-5
lines changed

.readthedocs.yaml

+28-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,36 @@
1+
2+
# Read the Docs configuration file for Sphinx projects
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
16
version: 2
27

8+
# Set the OS, Python version and other tools you might need
39
build:
410
os: ubuntu-22.04
511
tools:
6-
python: "3.9"
12+
python: "3.12"
13+
# You can also specify other tool versions:
14+
# nodejs: "20"
15+
# rust: "1.70"
16+
# golang: "1.20"
717

18+
# Build documentation in the "docs/" directory with Sphinx
819
sphinx:
9-
configuration: docs/source/conf.py
20+
configuration: docs/conf.py
21+
# You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
22+
# builder: "dirhtml"
23+
# Fail on all warnings to avoid broken references
24+
# fail_on_warning: true
25+
26+
# Optionally build your docs in additional formats such as PDF and ePub
27+
# formats:
28+
# - pdf
29+
# - epub
1030

11-
python:
12-
install:
13-
- requirements: docs/requirements.txt
31+
# Optional but recommended, declare the Python requirements required
32+
# to build your documentation
33+
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
34+
# python:
35+
# install:
36+
# - requirements: docs/requirements.txt

docs/requirements.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
sphinx>=7.1.2
2+
3+
sphinx-rtd-theme>=1.3.0
4+
myst-parser>=2.0.0
5+
sphinx-copybutton>=0.5.2
6+
sphinx-design>=0.5.0
7+
sphinx-autodoc-typehints>=1.25.2
8+
sphinx-autoapi>=3.0.0
9+
furo>=2024.1.29

docs/source/introduction/overview.rst

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Simply specify the information you need to extract, and ScrapeGraphAI handles th
1414

1515
For comprehensive documentation and updates, visit our `website <https://scrapegraphai.com>`_.
1616

17+
1718
Why ScrapegraphAI?
1819
==================
1920

requirements-dev.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
sphinx>=7.1.2
2+
myst-parser>=2.0.0
3+
sphinx-copybutton>=0.5.2
4+
sphinx-design>=0.5.0
5+
sphinx-autodoc-typehints>=1.25.2
6+
sphinx-autoapi>=3.0.0

requirements.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
sphinx>=7.1.2
2+
myst-parser>=2.0.0
3+
sphinx-copybutton>=0.5.2
4+
sphinx-design>=0.5.0
5+
sphinx-autodoc-typehints>=1.25.2
6+
sphinx-autoapi>=3.0.0

0 commit comments

Comments
 (0)