diff options
| -rw-r--r-- | README.md | 14 | ||||
| -rw-r--r-- | pyproject.toml | 2 |
2 files changed, 15 insertions, 1 deletions
@@ -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 diff --git a/pyproject.toml b/pyproject.toml index 40ae630..8c2e81a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = ["Cody Logan <clpo13@gmail.com>"] license = "MIT" readme = "README.md" homepage = "https://github.com/clpo13/alphanum" -repository = "https://github.com/clpo13/repository" +repository = "https://github.com/clpo13/alphanum" keywords = ['string', 'random', 'pseudo-random', 'generator'] [tool.poetry.dependencies] |
