From 1e7f289cc1792910a09ec5b9a929c0750b4aaad7 Mon Sep 17 00:00:00 2001 From: Johannes Dollinger Date: Sun, 12 May 2019 08:49:27 +0200 Subject: [PATCH] Bump version to 0.3.0 --- pyffx/__init__.py | 2 +- setup.py | 32 +++++++++++++++----------------- 2 files changed, 16 insertions(+), 18 deletions(-) diff --git a/pyffx/__init__.py b/pyffx/__init__.py index abbab4d..ee30a4d 100644 --- a/pyffx/__init__.py +++ b/pyffx/__init__.py @@ -1,4 +1,4 @@ from pyffx.codecs import Sequence, String, Integer # noqa from pyffx.ffx import FFX # noqa -__version__ = '0.2.0' +__version__ = "0.3.0" diff --git a/setup.py b/setup.py index 1bb15c3..e9021b5 100644 --- a/setup.py +++ b/setup.py @@ -3,27 +3,25 @@ import io import sys -with io.open('README.rst', encoding='utf-8') as f: +with io.open("README.rst", encoding="utf-8") as f: description = f.read() setup( - name='pyffx', - url='http://github.com/emulbreh/pyffx/', - version='0.2.0', + name="pyffx", + url="http://github.com/emulbreh/pyffx/", + version="0.3.0", packages=find_packages(), - license=u'MIT License', - author=u'Johannes Dollinger', - description=u'pure Python format preserving encryption', + license=u"MIT License", + author=u"Johannes Dollinger", + description=u"pure Python format preserving encryption", long_description=description, - install_requires=[ - 'six', - ], + install_requires=["six"], classifiers=[ - 'Development Status :: 3 - Alpha', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: MIT License', - 'Operating System :: OS Independent', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3' - ] + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + ], )