1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "unpaddedbase64"
version = "2.1.0"
description = 'Encode and decode Base64 without "=" padding'
license = "Apache-2.0"
authors = [ "The Matrix.org Foundation C.I.C." ]
readme = "README.rst"
homepage = "https://github.com/matrix-org/python-unpaddedbase64"
keywords = ["base64"]
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/matrix-org/python-unpaddedbase64/issues"
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
mypy = "*"
|