From 1894cfd312d4bd1c51b9ee63f25792f14dcfc665 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Fri, 27 Feb 2015 07:52:19 +0100 Subject: Added a section about the requirements to the documentation. --- documentation/index.rst | 3 ++- documentation/requirements.rst | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 documentation/requirements.rst (limited to 'documentation') diff --git a/documentation/index.rst b/documentation/index.rst index d01dc583..947612a1 100644 --- a/documentation/index.rst +++ b/documentation/index.rst @@ -7,12 +7,13 @@ Welcome to pyAggr3g470r's documentation! ======================================== -Deployment and configuration +Configuration and deployment ============================ .. toctree:: :maxdepth: 2 + requirements deployment Web services diff --git a/documentation/requirements.rst b/documentation/requirements.rst new file mode 100644 index 00000000..a3630144 --- /dev/null +++ b/documentation/requirements.rst @@ -0,0 +1,16 @@ +Requirements +============ + +The complete list of required Python modules is in the file +``requirements.txt``. + +The core technologies used are: + +* `Flask `_ for the web backend; +* `asyncio `_ for the crawler; +* `SQLAlchemy `_ for the data base. + +Python 3.4 is highly recommended, especially for the feed crawler. +The web server is working with Python 2.7 and Python 3. + +It is possible to connect your own crawler to the RESTful API. -- cgit From c4fdfed1341fd6ae4bcb62939e599c2937680343 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Fri, 27 Feb 2015 07:53:36 +0100 Subject: Updated version number in the documentation. --- documentation/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'documentation') diff --git a/documentation/conf.py b/documentation/conf.py index b148de9d..00190f45 100644 --- a/documentation/conf.py +++ b/documentation/conf.py @@ -48,9 +48,9 @@ copyright = u'2015, Cédric Bonhomme' # built documents. # # The short X.Y version. -version = '6.0' +version = '6.2' # The full version, including alpha/beta/rc tags. -release = '6.0' +release = '6.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -- cgit