Skip to content

Commit 59e35d4

Browse files
committed
packaged
1 parent 687b18e commit 59e35d4

10 files changed

+7
-11
lines changed

README

+1-5
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,12 @@ Binary tree
1717
- delete
1818
- compare 2 trees
1919
- print tree
20-
- tree inorder iterator
20+
- tree inorder generator
2121

2222
### Installation
2323
Get the source and run
2424

2525
$ python setup.py install
2626

27-
### Usage
28-
To use the Python Algorithms library, just import the modules you need
29-
like 'import string_matching' in your current python application.
30-
3127
### License
3228
The Python Algorithms Library is distributed under the MIT License
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

setup.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
from distutils.core import setup
22
setup(
3-
name = "pyalgorithms",
4-
py_modules = ['string_matching', 'binary_tree'],
3+
name = "algorithms",
4+
py_modules = ['string_matching', 'binary_tree', 'list', 'permutations', 'generators'],
55
version = "0.1",
6-
description = "Python Algorithms",
6+
description = "Algorithms implemented in Python",
77
author = "Laurent Luce",
88
author_email = "laurentluce49@yahoo.com",
9-
url = "http://github.com/laurentluce/pyalgorithms",
10-
download_url = "http://github.com/laurentluce/pyalgorithms",
11-
keywords = ["python-algorithms","algorithms"],
9+
url = "http://github.com/laurentluce/python-algorithms",
10+
download_url = "http://github.com/laurentluce/python-algorithms",
11+
keywords = ["algorithms"],
1212
classifiers = [
1313
"Programming Language :: Python",
1414
"Operating System :: OS Independent",

0 commit comments

Comments
 (0)