mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
Fix download link in setup.py
This commit is contained in:
parent
fc6613ffb1
commit
ae896f4a33
2
setup.py
2
setup.py
@ -7,7 +7,7 @@ HERE = os.path.abspath(os.path.dirname(__file__))
|
|||||||
with open(os.path.join(HERE, PACKAGE_NAME, 'const.py')) as fp:
|
with open(os.path.join(HERE, PACKAGE_NAME, 'const.py')) as fp:
|
||||||
VERSION = re.search("__version__ = ['\"]([^']+)['\"]\n", fp.read()).group(1)
|
VERSION = re.search("__version__ = ['\"]([^']+)['\"]\n", fp.read()).group(1)
|
||||||
DOWNLOAD_URL = \
|
DOWNLOAD_URL = \
|
||||||
'https://github.com/balloob/home-assistant/tarball/{}'.format(VERSION)
|
'https://github.com/balloob/home-assistant/archive/{}.zip'.format(VERSION)
|
||||||
|
|
||||||
PACKAGES = find_packages() + \
|
PACKAGES = find_packages() + \
|
||||||
['homeassistant.external', 'homeassistant.external.noop',
|
['homeassistant.external', 'homeassistant.external.noop',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user