Skip to content

Commit

Permalink
Seperate documentation and project dependancies (#12)
Browse files Browse the repository at this point in the history
This separates documentation and project dependencies and adds readthedocs configuration.
  • Loading branch information
codingedward authored Aug 16, 2020
1 parent 812da0e commit 849408e
Show file tree
Hide file tree
Showing 9 changed files with 328 additions and 488 deletions.
12 changes: 12 additions & 0 deletions .readthedocs.yml
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
4 changes: 0 additions & 4 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,13 @@ verify_ssl = true
[dev-packages]
coveralls = "*"
nose = "*"
sphinx = "*"
pallets-sphinx-themes = "*"

[packages]
requests = "*"
python-dateutil = "*"
pytz = "*"
flask = "*"
pillow = ">=7.1.0"
recommonmark = "*"
urllib3 = "*"
werkzeug = "*"

[requires]
Expand Down
330 changes: 4 additions & 326 deletions Pipfile.lock

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions docs/Pipfile
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"
262 changes: 262 additions & 0 deletions docs/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions docs/requirements.txt
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
Loading

0 comments on commit 849408e

Please sign in to comment.