-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Seperate documentation and project dependancies (#12)
This separates documentation and project dependencies and adds readthedocs configuration.
- Loading branch information
1 parent
812da0e
commit 849408e
Showing
9 changed files
with
328 additions
and
488 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
version: 2 | ||
|
||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
formats: all | ||
|
||
python: | ||
version: 3.8 | ||
install: | ||
- requirements: docs/requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[[source]] | ||
name = "pypi" | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
|
||
[dev-packages] | ||
|
||
[packages] | ||
sphinx = "*" | ||
recommonmark = "*" | ||
flask-sphinx-themes = "*" | ||
|
||
[requires] | ||
python_version = "3.8" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
alabaster==0.7.12 | ||
Babel==2.8.0 | ||
certifi==2020.6.20 | ||
chardet==3.0.4 | ||
commonmark==0.9.1 | ||
docutils==0.16 | ||
Flask-Sphinx-Themes==1.0.2 | ||
idna==2.10 | ||
imagesize==1.2.0 | ||
Jinja2==2.11.2 | ||
MarkupSafe==1.1.1 | ||
packaging==20.4 | ||
Pygments==2.6.1 | ||
pyparsing==2.4.7 | ||
pytz==2020.1 | ||
recommonmark==0.6.0 | ||
requests==2.24.0 | ||
six==1.15.0 | ||
snowballstemmer==2.0.0 | ||
Sphinx==3.2.1 | ||
sphinxcontrib-applehelp==1.0.2 | ||
sphinxcontrib-devhelp==1.0.2 | ||
sphinxcontrib-htmlhelp==1.0.3 | ||
sphinxcontrib-jsmath==1.0.1 | ||
sphinxcontrib-qthelp==1.0.3 | ||
sphinxcontrib-serializinghtml==1.1.4 | ||
urllib3==1.25.10 |
Oops, something went wrong.