2018-01-24 17:41:44 -06:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-03-12 09:26:37 -06:00
|
|
|
import sys
|
|
|
|
python_version = int(sys.version[0])
|
2018-01-24 17:41:44 -06:00
|
|
|
name = "MusicDL"
|
2020-07-08 08:27:08 -05:00
|
|
|
version = "0.7"
|
2018-01-24 17:41:44 -06:00
|
|
|
author = "Manuel Cortéz"
|
|
|
|
authorEmail = "manuel@manuelcortez.net"
|
2020-07-08 08:27:08 -05:00
|
|
|
copyright = "Copyright (C) 2019-2020, Manuel Cortez"
|
2018-03-12 09:26:37 -06:00
|
|
|
description = name+_(u" Is an application that will allow you to download music from popular sites such as youtube, zaycev.net.")
|
2018-01-24 17:41:44 -06:00
|
|
|
url = "https://manuelcortez.net/music_dl"
|
|
|
|
# The short name will be used for detecting translation files. See languageHandler for more details.
|
|
|
|
short_name = "musicdl"
|
2020-07-08 08:27:08 -05:00
|
|
|
translators = [_(u"Manuel Cortez (Spanish)")]
|
2018-10-11 10:59:47 -05:00
|
|
|
bts_name = "music_dl"
|
|
|
|
bts_access_token = "fe3j2ijirvevv9"
|
2020-07-17 17:51:02 -05:00
|
|
|
bts_url = "https://issues.manuelcortez.net"
|
|
|
|
update_stable_url = "https://manuelcortez.net/static/files/music_dl/update/stable.json"
|
|
|
|
update_next_url = "https://manuelcortez.net/static/files/music_dl/update/alpha.json"
|
|
|
|
update_next_version=None
|