From cb82f959005eae00fb4dc30c1288cd615b8083d1 Mon Sep 17 00:00:00 2001 From: "benjamin.jakimow@geo.hu-berlin.de" <q8DTkxUg-BB> Date: Tue, 10 Jan 2017 13:42:47 +0100 Subject: [PATCH] added DIR_DOCS and PATH_LICENCE variables --- timeseriesviewer/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/timeseriesviewer/__init__.py b/timeseriesviewer/__init__.py index ed19a450..ac29c519 100644 --- a/timeseriesviewer/__init__.py +++ b/timeseriesviewer/__init__.py @@ -4,13 +4,15 @@ import six jp = os.path.join dn = os.path.dirname mkdir = lambda p: os.makedirs(p, exist_ok=True) - +VERSION = '0.2' DIR = os.path.dirname(__file__) DIR_REPO = os.path.dirname(DIR) DIR_SITE_PACKAGES = jp(DIR_REPO, 'site-packages') DIR_UI = jp(DIR,*['ui']) +DIR_DOCS = jp(DIR,'docs') DIR_EXAMPLES = jp(DIR_REPO, 'example') PATH_EXAMPLE_TIMESERIES = jp(DIR_EXAMPLES,'ExampleTimeSeries.csv') +PATH_LICENSE = jp(DIR_REPO, 'GPL-3.0.txt') DEBUG = True def dprint(text, file=None): -- GitLab