aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 3e6f26e051cffcfcc5b34d3ee8fc1d1a54009860 (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.2.0"
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.5"

[tool.poetry.dev-dependencies]
pytest = "^6.0"

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"