We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53ccc1a commit 1b05251Copy full SHA for 1b05251
README.md
@@ -11,11 +11,13 @@ Make a Python implementation of the library so that a Python programmer can foll
11
12
Try to keep the interface and variable name consistent with the original book while writing idiomatic Python code.
13
14
-## Install (WIP)
+## Install
15
16
`# pip install algs4`
17
18
-`from algs4 import Stack`
+```python
19
+from algs4 import Stack
20
+```
21
22
## Index
23
setup.py
@@ -16,9 +16,10 @@
setup(
name='algs4',
- version='1.0.0',
+ version='1.0.1',
description='A Python implementation library for book algs4',
long_description=long_description,
+ long_description_content_type='text/markdown',
url='https://github.com/shellfly/algs4-py',
24
author='shellfly',
25
author_email='[email protected]',
0 commit comments