comparison sat/core/constants.py @ 2565:ea106dfa2145

setup, constant: use https address in APP_URL, and keep pypi NAME separated from constants
author Goffi <goffi@goffi.org>
date Tue, 03 Apr 2018 09:04:55 +0200
parents 26edcf3a30eb
children 4aca060075b7
comparison
equal deleted inserted replaced
2564:6e5ab7bebd11 2565:ea106dfa2145
28 28
29 ## Application ## 29 ## Application ##
30 APP_NAME = u'Salut à Toi' 30 APP_NAME = u'Salut à Toi'
31 APP_NAME_SHORT = u'SàT' 31 APP_NAME_SHORT = u'SàT'
32 APP_NAME_FILE = u'sat' 32 APP_NAME_FILE = u'sat'
33 APP_NAME_FULL = u'%s (%s)' % (APP_NAME_SHORT, APP_NAME) 33 APP_NAME_FULL = u'{name_short} ({name})'.format(name_short=APP_NAME_SHORT,
34 name=APP_NAME)
34 APP_VERSION = u'0.7.0D' # Please add 'D' at the end for dev versions 35 APP_VERSION = u'0.7.0D' # Please add 'D' at the end for dev versions
35 APP_RELEASE_NAME = u'La Commune' 36 APP_RELEASE_NAME = u'La Commune'
36 APP_URL = u'http://salut-a-toi.org' 37 APP_URL = u'https://salut-a-toi.org'
37 38
38 39
39 ## Runtime ## 40 ## Runtime ##
40 PLUGIN_EXT = "py" 41 PLUGIN_EXT = "py"
41 HISTORY_SKIP = u'skip' 42 HISTORY_SKIP = u'skip'