blob: 40ae630b9573f8d51df3088c003e95023445a2d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[tool.poetry]
name = "alphanum"
version = "0.1.1"
description = "Generates random alphanumeric strings."
authors = ["Cody Logan <clpo13@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/clpo13/alphanum"
repository = "https://github.com/clpo13/repository"
keywords = ['string', 'random', 'pseudo-random', 'generator']
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
|