Skip to content

Commit

Permalink
make changing the version easier
Browse files Browse the repository at this point in the history
  • Loading branch information
tedivm committed Aug 23, 2017
1 parent 12eca2c commit ff38b50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
long_description = open('README.md').read()



version = '0.2.0'
setup(

name = 'gitconsensus',

version = '0.2.0',
version = version,
packages=find_packages(),

description = 'Automate Github Pull Requests using Reactions',
Expand All @@ -28,7 +28,7 @@
author = 'Robert Hafner',
author_email = 'tedivm@tedivm.com',
url = 'https://github.com/tedivm/gitconsensus',
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),
keywords = 'automation github consensus git',

classifiers = [
Expand Down

0 comments on commit ff38b50

Please sign in to comment.