Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 80a71c9

Browse files
committed
Added a variable for version
1 parent c37319e commit 80a71c9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
from setuptools import setup
2+
version = '2.4.5'
23

34
setup(
45
name='clearblade',
56
packages=['clearblade'],
67
install_requires=['requests', 'paho-mqtt>=1.3.0'],
7-
version='2.4.5',
8+
version=[version],
89
description='A Python SDK for interacting with the ClearBlade Platform.',
910
url='https://github.com/ClearBlade/ClearBlade-Python-SDK',
10-
download_url='https://github.com/ClearBlade/ClearBlade-Python-SDK/archive/v2.4.4.tar.gz',
11+
download_url='https://github.com/ClearBlade/ClearBlade-Python-SDK/archive/' + version + '.tar.gz',
1112
keywords=['clearblade', 'iot', 'sdk'],
1213
maintainer='Aaron Allsbrook',
1314
maintainer_email='[email protected]'

0 commit comments

Comments
 (0)