Skip to content

Commit

Permalink
Bumping version to 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulSchweizer committed Oct 3, 2019
1 parent 174a1f8 commit b58b533
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions flowpipe/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
"""Flow-based programming with python."""

__version__ = '0.5.2'

import logging

PACKAGE = 'flowpipe'
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
from setuptools import setup
from setuptools import find_packages

import flowpipe

with open("README.md") as stream:

with open('README.md') as stream:
long_description = stream.read()

REQUIREMENTS = [
Expand All @@ -12,7 +14,7 @@
]

setup(name='flowpipe',
version='0.5.1',
version=flowpipe.__version__,
author='Paul Schweizer',
author_email='paulschweizer@gmx.net',
description='Lightweight flow-based programming framework.',
Expand All @@ -29,4 +31,4 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
])
])

0 comments on commit b58b533

Please sign in to comment.