From 0373c243cd296655775cc41082ac422b8399c34d Mon Sep 17 00:00:00 2001 From: Maxim Tsoy Date: Mon, 19 Mar 2018 00:04:37 +0100 Subject: [PATCH] bump version --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6aa7575..b0a7cff 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,15 @@ +import os + from setuptools import setup +long_description = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() setup( name='kociemba', - version='1.1', + version='1.2', description='Python/C implementation of Herbert Kociemba\'s Two-Phase algorithm for solving Rubik\'s Cube', + long_description=long_description, + long_description_content_type='text/markdown', keywords='kociemba rubik cube solver twophase', url='https://github.com/muodov/kociemba', author='muodov',