Skip to content

Commit

Permalink
update and release v0.1.4 to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
goswami-rahul committed Oct 4, 2020
1 parent d04b9a5 commit 476fb94
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,20 @@ 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",
url='https://github.com/keon/algorithms',
author='Algorithms Team & Contributors',
author_email="[email protected]",
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)

0 comments on commit 476fb94

Please sign in to comment.