Puppetboard: Version Bump to 0.2.0 (#263)

This commit is contained in:
Corey Hammerton
2016-06-28 20:42:44 -04:00
committed by GitHub
parent 2a6e2380ad
commit 59c79c7592
3 changed files with 33 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
VERSION = "0.1.3"
VERSION = "0.2.0"
with codecs.open('README.rst', encoding='utf-8') as f:
README = f.read()
@@ -20,8 +20,8 @@ with codecs.open('CHANGELOG.rst', encoding='utf-8') as f:
setup(
name='puppetboard',
version=VERSION,
author='Daniele Sluijters',
author_email='daniele.sluijters+pypi@gmail.com',
author='Corey Hammerton',
author_email='corey.hammerton@gmail.com',
packages=find_packages(),
url='https://github.com/voxpupuli/puppetboard',
license='Apache License 2.0',
@@ -31,7 +31,7 @@ setup(
install_requires=[
"Flask >= 0.10.1",
"Flask-WTF >= 0.12, <= 0.13",
"WTForms < 3.0",
"WTForms >= 2.0, < 3.0",
"pypuppetdb >= 0.3.0, < 0.4.0",
],
keywords="puppet puppetdb puppetboard",