Skip to content

Commit 476fb94

Browse files
committed
update and release v0.1.4 to PyPI
1 parent d04b9a5 commit 476fb94

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -223,15 +223,14 @@ If you want to uninstall algorithms, it is as simple as:
223223
- [hailstone](algorithms/maths/hailstone.py)
224224
- [recursive_binomial_coefficient](algorithms/maths/recursive_binomial_coefficient.py)
225225
- [find_order](algorithms/maths/find_order_simple.py)
226-
- [find_primitive_root](algorithms/maths/find_primitive_root_simple.py)
227-
- [diffie_hellman_key_exchange](algorithms/maths/diffie_hellman_key_exchange.py)
226+
- [find_primitive_root](algorithms/maths/find_primitive_root_simple.py)
227+
- [diffie_hellman_key_exchange](algorithms/maths/diffie_hellman_key_exchange.py)
228228
- [matrix](algorithms/matrix)
229229
- [sudoku_validator](algorithms/matrix/sudoku_validator.py)
230230
- [bomb_enemy](algorithms/matrix/bomb_enemy.py)
231231
- [copy_transform](algorithms/matrix/copy_transform.py)
232232
- [count_paths](algorithms/matrix/count_paths.py)
233233
- [matrix_exponentiation](algorithms/matrix/matrix_exponentiation.py)
234-
- [matrix_rotation.txt](algorithms/matrix/matrix_rotation.txt)
235234
- [matrix_inversion](algorithms/matrix/matrix_inversion.py)
236235
- [matrix_multiplication](algorithms/matrix/multiply.py)
237236
- [rotate_image](algorithms/matrix/rotate_image.py)
@@ -327,7 +326,7 @@ If you want to uninstall algorithms, it is as simple as:
327326
- [judge_circle](algorithms/strings/judge_circle.py)
328327
- [strong_password](algorithms/strings/strong_password.py)
329328
- [caesar_cipher](algorithms/strings/caesar_cipher.py)
330-
- [check_pangram](algorithms/strings/check_pangram.py
329+
- [check_pangram](algorithms/strings/check_pangram.py)
331330
- [contain_string](algorithms/strings/contain_string.py)
332331
- [count_binary_substring](algorithms/strings/count_binary_substring.py)
333332
- [repeat_string](algorithms/strings/repeat_string.py)

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,20 @@ def long_description():
1111

1212

1313
setup(name='algorithms',
14-
version='0.1.0',
14+
version='0.1.4',
1515
description='Pythonic Data Structures and Algorithms',
1616
long_description=long_description(),
1717
long_description_content_type="text/markdown",
1818
url='https://github.com/keon/algorithms',
1919
author='Algorithms Team & Contributors',
2020
author_email="[email protected]",
2121
license='MIT',
22-
packages=find_packages(),
22+
packages=find_packages(exclude=('tests', 'tests.*')),
2323
classifiers=[
2424
'Programming Language :: Python :: 3',
2525
'Programming Language :: Python :: 3.4',
2626
'Programming Language :: Python :: 3.5',
2727
'Programming Language :: Python :: 3.6',
28+
'Programming Language :: Python :: 3.7',
2829
],
2930
zip_safe=False)

0 commit comments

Comments
 (0)