31 lines
886 B
TOML
31 lines
886 B
TOML
[project]
|
|
name = "b64url"
|
|
version = "1.0.0"
|
|
description = "URL-safe Base64 encoding and decoding without padding, encoding bytes into str, avoiding base64 module's flaws."
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dependencies = []
|
|
authors = [
|
|
{name = "Leo Vasanko"},
|
|
]
|
|
keywords = ["base64", "base64url", "urlsafe_b64encode", "urlsafe_b64decode"]
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"License :: Public Domain",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Utilities",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/LeoVasanko/b64url-python"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["b64url.py"]
|