We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12eca2c commit ff38b50Copy full SHA for ff38b50
setup.py
@@ -13,12 +13,12 @@
13
long_description = open('README.md').read()
14
15
16
-
+version = '0.2.0'
17
setup(
18
19
name = 'gitconsensus',
20
21
- version = '0.2.0',
+ version = version,
22
packages=find_packages(),
23
24
description = 'Automate Github Pull Requests using Reactions',
@@ -28,7 +28,7 @@
28
author = 'Robert Hafner',
29
author_email = '[email protected]',
30
url = 'https://github.com/tedivm/gitconsensus',
31
- download_url = 'https://github.com/tedivm/gitconsensus/archive/v0.1.0.tar.gz',
+ download_url = "https://github.com/tedivm/gitconsensus/archive/v%s.tar.gz" % (version),
32
keywords = 'automation github consensus git',
33
34
classifiers = [
0 commit comments