File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change
1
+ # .readthedocs.yaml
2
+ # Read the Docs configuration file
3
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4
+
5
+ # Required
6
+ version : 2
7
+
8
+ # Set the version of Python and other tools you might need
9
+ build :
10
+ os : ubuntu-22.04
11
+ tools :
12
+ python : " 3.9"
13
+
14
+ # Build documentation in the docs/ directory with Sphinx
15
+ sphinx :
16
+ configuration : docs/conf.py
17
+
18
+ # If using Sphinx, optionally build your docs in additional formats such as PDF
19
+ formats :
20
+ - pdf
21
+ - epub
22
+
23
+ # Optionally declare the Python requirements required to build your docs
24
+ python :
25
+ install :
26
+ - method : pip
27
+ path : .
28
+ extra_requirements :
29
+ - docs
30
+
31
+ - method : pip
32
+ path : .
Original file line number Diff line number Diff line change @@ -86,10 +86,24 @@ dependencies = [
86
86
' six>=1.16.0' ,
87
87
]
88
88
89
+
90
+ [project .optional-dependencies ]
91
+
92
+ docs = [
93
+ ' Sphinx>=5.0.2' ,
94
+ ' sphinx-rtd-theme>=1.0.0' ,
95
+ ' sphinx_design>=0.2.0' ,
96
+ ]
97
+
98
+
89
99
[project .urls ]
90
100
91
101
# Here is the URL where you can find the code, in this case on GitHub.
92
102
Source = ' https://github.com/AsifArmanRahman/firebase-rest-api'
93
103
104
+ # Here is the URL where you can find the documentation of the library, in this case on Read the Docs.
105
+ Documentation = ' https://firebase-rest-api.readthedocs.io/'
106
+
107
+
94
108
[tool .flit .module ]
95
109
name = ' firebase'
You can’t perform that action at this time.
0 commit comments