diff --git a/.drone.yml b/.drone.yml index d5b3af0..941df8b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -41,7 +41,7 @@ steps: # Install pre-requisites - pip install -r requirements-dev.txt # Perform linting - - doc8 docs --ignore-path docs/_build + - doc8 --- kind: pipeline diff --git a/README.rst b/README.rst index 71de38a..b5e2384 100644 --- a/README.rst +++ b/README.rst @@ -17,11 +17,19 @@ Humulus ======= -Humulus is an open-source homebrew beer recipe webapp built using Flask_ and CouchDB_. +Humulus is an open-source homebrew beer recipe webapp built using Flask_ and +CouchDB_. .. _Flask: http://couchdb.apache.org/ .. _CouchDB: http://flask.pocoo.org/ +Documentation +------------- + +For help installing and using Humulus, please visit the documentation_. + +.. _documentation: https://humulus.shoup.io/ + License ------- diff --git a/setup.cfg b/setup.cfg index 6727527..41af5bc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,10 +9,15 @@ branch = True source = humulus [flake8] -exclude = .svn,CVS,.bzr,.hg,.git,__pycache__,.tox,.eggs,*.egg,instance +exclude = .git,__pycache__,.tox,.eggs,*.egg,instance show-source = True count = True max-line-length = 79 max-complexity = 18 ignore = W503 select = B,C,E,F,W,T4,B9 + +[doc8] +max-line-length = 79 +extension = .rst +ignore-path = docs/_build,pip-wheel-metadata,.git,__pycache__,.tox,.eggs,*.egg,instance