Skip to content

Commit

Permalink
Bump version to 0.3.0
Browse files Browse the repository at this point in the history
emulbreh committed May 12, 2019
1 parent a6142d3 commit 1e7f289
Showing 2 changed files with 16 additions and 18 deletions.
2 changes: 1 addition & 1 deletion pyffx/__init__.py
Original file line number Diff line number Diff line change
@@ -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"
32 changes: 15 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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",
],
)

0 comments on commit 1e7f289

Please sign in to comment.