aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
index cab856e..77e9661 100644
--- a/README.md
+++ b/README.md
@@ -3,6 +3,20 @@
Simple Python library to generate pseudo-random alphanumeric strings of
arbitrary length. Requires Python 3.6+.
+## Installation
+
+alphanum can be obtained from PyPI with `pip install alphanum`.
+
+Alternatively, build it with [Poetry](https://python-poetry.org/):
+
+```bash
+pip install poetry
+git clone https://github.com/clpo13/alphanum
+cd alphanum
+poetry build
+pip install dist/alphanum-x.y.z-py3-none-any.whl
+```
+
## Usage
```python