aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Lutomirski <luto@amacapital.net>2014-09-10 11:00:44 -0700
committerAndy Lutomirski <luto@amacapital.net>2014-09-10 11:00:44 -0700
commite7efbb8f1c80ba20cd5eee183791382d72c77e4d (patch)
tree90c64419f6d6ea9d4e86eca934bc351a60c340e8
parenta84a0b1d9fdb550bc5a1c6b129a982d25128cbc2 (diff)
downloadvirtme-e7efbb8f1c80ba20cd5eee183791382d72c77e4d.tar.gz
setup.py: Add canonical download URL
Signed-off-by: Andy Lutomirski <luto@amacapital.net>
-rwxr-xr-xsetup.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 3cca6a5..cb58534 100755
--- a/setup.py
+++ b/setup.py
@@ -12,13 +12,16 @@ if sys.version_info.major < 3:
print('virtme requires Python 3 or higher')
sys.exit(1)
+_VERSION = '0.0.1'
+
setup(
name='virtme',
- version='0.0.1',
+ version=_VERSION,
author='Andy Lutomirski',
author_email='luto@amacapital.net',
description='Virtualize the running distro or a simple rootfs',
url='https://git.kernel.org/cgit/utils/kernel/virtme/virtme.git',
+ download_url='https://www.kernel.org/pub/linux/utils/kernel/virtme/releases/virtme-%s.tar.xz' % _VERSION,
license='GPLv2',
long_description=open(os.path.join(os.path.dirname(__file__),
'README.md'), 'r').read(),