Skip to content

Commit

Permalink
fix pypi description missing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
slxiao committed Nov 24, 2019
1 parent 2716f5b commit 53ff137
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</p>

# partition
```partiton` is a Python algorithm library which provides efficient algorithms for the [number partition problem](https://en.wikipedia.org/wiki/Partition_problem). You can also use it from shell command. These algorithms have many applications. One typical one is for [parallel software testing](https://mp.weixin.qq.com/s/oq3-mJ7cA6f_lK0SviMVyw). Currently, the following three algorithms are supported:
`partiton` is a Python algorithm library which provides efficient algorithms for the [number partition problem](https://en.wikipedia.org/wiki/Partition_problem). You can also use it from shell command. These algorithms have many applications. One typical one is for [parallel software testing](https://mp.weixin.qq.com/s/oq3-mJ7cA6f_lK0SviMVyw). Currently, the following three algorithms are supported:
- greedy algorithm, which is a benchmark algorithm with simple login
- differencing algorithm, a.k.a. Karmarkar–Karp(KK) algorithm
- dynamic programming(DP) algorithm, which is optimal for scenarios where the size of integers is not too large
Expand Down
2 changes: 1 addition & 1 deletion partition/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.1.2"
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"""partition: Python number partition algorithm library
"""

import io
from setuptools import setup


version = "0.1.0"
version = "0.1.2"

setup(
include_package_data=True,
Expand All @@ -20,6 +20,8 @@
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4',
license='MIT',
author='slxiao',
long_description=io.open('README.md', encoding='utf8').read(),
long_description_content_type='text/markdown',
author_email='[email protected]',
description='Python number partition algorithm library',
classifiers=[
Expand Down

0 comments on commit 53ff137

Please sign in to comment.