aboutsummaryrefslogtreecommitdiff
path: root/src/web/__init__.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-06 07:49:12 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-06 07:49:12 +0200
commitde05845887181f949780f5627570713b4d3ca93b (patch)
tree939022f287c9a272af2aee9c280a12c6ef303f94 /src/web/__init__.py
parentNow using Heroku Python runtime 3.6.1. (diff)
downloadnewspipe-de05845887181f949780f5627570713b4d3ca93b.tar.gz
newspipe-de05845887181f949780f5627570713b4d3ca93b.tar.bz2
newspipe-de05845887181f949780f5627570713b4d3ca93b.zip
Added a page which displays some information about the instance.
Diffstat (limited to 'src/web/__init__.py')
-rw-r--r--src/web/__init__.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/web/__init__.py b/src/web/__init__.py
index e69de29b..cca2a501 100644
--- a/src/web/__init__.py
+++ b/src/web/__init__.py
@@ -0,0 +1,8 @@
+__author__ = "Cedric Bonhomme"
+__version__ = "$Revision: 7.1.3 $"
+__date__ = "$Date: 2016/11/14 $"
+__revision__ = "$Date: 2016/11/14 $"
+__copyright__ = "Copyright (c) Cedric Bonhomme"
+__license__ = "GPLv3"
+
+__all__ = [__version__]
bgstack15