From c484323ef643cf4509afd6641f0ed89e7633a93b Mon Sep 17 00:00:00 2001 From: Will Fatherley Date: Fri, 2 Aug 2024 00:54:58 -0400 Subject: [PATCH] add pyproject metadata --- pyproject.toml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9c6500e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,40 @@ +[build-system] +requires = ["setuptools", "setuptools_scm"] +build-backend = "setuptools.build_meta" + + +[project] +authors = [ + {name = "Will Fatherley", email = "wfatherley@proton.me"} +] +classifiers = [ + "Intended Audience :: Developers", + "Topic :: Security :: Cryptography", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3" +] +description = "HMAC-base key derivation function (IETF RFC 5869) implemented with Python" +dynamic = [ + "version" +] +license = {file = "LICENSE.md"} +maintainers = [ + {name = "Will Fatherley", email = "wfatherley@proton.me"} +] +name = "hkdfref" +readme = {file = "README.md", content-type = "text/markdown"} + + +[project.urls] +repository = "https://github.com/wfatherley/hkdfref.git" + + +# [project.scripts] +# hkdf = hkdfref:cli + + +[tool.setuptools.packages.find] +where = ["src"] +include = ["hkdfref"] + +[tool.setuptools_scm]