mirror of
https://github.com/hassio-addons/docker-context-streamer.git
synced 2025-05-07 04:11:24 +00:00
Add download url to setup.py
This commit is contained in:
parent
b3431c2a15
commit
48e8b55c50
2 changed files with 3 additions and 1 deletions
|
@ -38,4 +38,5 @@ __author__ = 'Franck Nijhof'
|
|||
__copyright__ = 'Copyright 2017, Franck Nijhof'
|
||||
__license__ = 'GPLv3'
|
||||
__url__ = 'https://github.com/hassio-addons/docker-context-streamer'
|
||||
__download__ = 'https://github.com/hassio-addons/docker-context-streamer/archive/0.0.1.tar.gz'
|
||||
__version__ = APP_VERSION
|
||||
|
|
3
setup.py
3
setup.py
|
@ -3,7 +3,7 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
from dcs import (
|
||||
__author__, __license__, __url__,
|
||||
__author__, __license__, __url__, __download__,
|
||||
APP_NAME, APP_VERSION, APP_DESCRIPTION
|
||||
)
|
||||
|
||||
|
@ -15,6 +15,7 @@ setup(
|
|||
long_description=APP_DESCRIPTION,
|
||||
license=__license__,
|
||||
url=__url__,
|
||||
download_url=__download__,
|
||||
keywords=['docker', 'dockerfile', 'stream'],
|
||||
classifiers=[
|
||||
'Development Status :: 3 - Alpha',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue