Add download url to setup.py

This commit is contained in:
Franck Nijhof 2017-08-27 21:49:04 +02:00
parent b3431c2a15
commit 48e8b55c50
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3
2 changed files with 3 additions and 1 deletions

View file

@ -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

View file

@ -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',