From 476fb94886a109a030a844e8fceead479f73470a Mon Sep 17 00:00:00 2001 From: Rahul Goswami Date: Sun, 4 Oct 2020 20:15:39 +0530 Subject: [PATCH] update and release v0.1.4 to PyPI --- README.md | 7 +++---- setup.py | 5 +++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bc9acbae3..7aaafc137 100644 --- a/README.md +++ b/README.md @@ -223,15 +223,14 @@ If you want to uninstall algorithms, it is as simple as: - [hailstone](algorithms/maths/hailstone.py) - [recursive_binomial_coefficient](algorithms/maths/recursive_binomial_coefficient.py) - [find_order](algorithms/maths/find_order_simple.py) - - [find_primitive_root](algorithms/maths/find_primitive_root_simple.py) - - [diffie_hellman_key_exchange](algorithms/maths/diffie_hellman_key_exchange.py) + - [find_primitive_root](algorithms/maths/find_primitive_root_simple.py) + - [diffie_hellman_key_exchange](algorithms/maths/diffie_hellman_key_exchange.py) - [matrix](algorithms/matrix) - [sudoku_validator](algorithms/matrix/sudoku_validator.py) - [bomb_enemy](algorithms/matrix/bomb_enemy.py) - [copy_transform](algorithms/matrix/copy_transform.py) - [count_paths](algorithms/matrix/count_paths.py) - [matrix_exponentiation](algorithms/matrix/matrix_exponentiation.py) - - [matrix_rotation.txt](algorithms/matrix/matrix_rotation.txt) - [matrix_inversion](algorithms/matrix/matrix_inversion.py) - [matrix_multiplication](algorithms/matrix/multiply.py) - [rotate_image](algorithms/matrix/rotate_image.py) @@ -327,7 +326,7 @@ If you want to uninstall algorithms, it is as simple as: - [judge_circle](algorithms/strings/judge_circle.py) - [strong_password](algorithms/strings/strong_password.py) - [caesar_cipher](algorithms/strings/caesar_cipher.py) - - [check_pangram](algorithms/strings/check_pangram.py + - [check_pangram](algorithms/strings/check_pangram.py) - [contain_string](algorithms/strings/contain_string.py) - [count_binary_substring](algorithms/strings/count_binary_substring.py) - [repeat_string](algorithms/strings/repeat_string.py) diff --git a/setup.py b/setup.py index f08f24f14..56099a55c 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def long_description(): setup(name='algorithms', - version='0.1.0', + version='0.1.4', description='Pythonic Data Structures and Algorithms', long_description=long_description(), long_description_content_type="text/markdown", @@ -19,11 +19,12 @@ def long_description(): author='Algorithms Team & Contributors', author_email="kwk236@gmail.com", license='MIT', - packages=find_packages(), + packages=find_packages(exclude=('tests', 'tests.*')), classifiers=[ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], zip_safe=False)