Skip to content

Commit a506e52

Browse files
author
Joel Rangsmo
committed
Add version variable and fix download URL
1 parent d369f22 commit a506e52

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
except ImportError:
99
from distutils.core import setup
1010

11+
version = '0.5'
1112
source_directory = os.path.abspath(os.path.dirname(__file__))
1213

1314
with open(os.path.join(source_directory, 'README.md'), 'r') as file_handle:
@@ -31,9 +32,10 @@
3132
license='Apache License 2.0',
3233
author='Joel Rangsmo',
3334
author_email='[email protected]',
34-
version='0.4',
35+
version=version,
3536
url='https://github.com/elastx/python-pomerium_http_adapter',
36-
download_url='https://github.com/elastx/python-pomerium_http_adapter/archive/v0.2.tar.gz',
37+
download_url=(
38+
'https://github.com/elastx/python-pomerium_http_adapter/archive/v%s.tar.gz' % version),
3739
packages=['pomerium_http_adapter'],
3840
package_dir={'pomerium_http_adapter': 'pomerium_http_adapter'},
3941
install_requires=['requests>=2.23.0'])

0 commit comments

Comments
 (0)