aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 8c2e81a7634f91e5b19f0422daca20947cf4527e (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/alphanum"
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"