We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a6e800 commit c735ca2Copy full SHA for c735ca2
setup.py
@@ -2,16 +2,19 @@
2
3
from setuptools import setup
4
5
+
6
+version = '0.4.5'
7
8
setup(
9
name='upcloud-api',
- version='0.4.5',
10
+ version=version,
11
description='UpCloud API Client',
12
author='Elias Nygren',
13
maintainer='Mika Lackman',
14
maintainer_email='mika.lackman@upcloud.com',
15
url='https://github.com/UpCloudLtd/upcloud-python-api',
16
packages=['upcloud_api', 'upcloud_api.cloud_manager'],
- download_url='https://github.com/UpCloudLtd/upcloud-python-api/archive/0.4.5.tar.gz',
17
+ download_url='https://github.com/UpCloudLtd/upcloud-python-api/archive/%s.tar.gz' % version,
18
license='MIT',
19
install_requires=[
20
'requests>=2.6.0',
0 commit comments