Skip to content

Commit

Permalink
add pyproject metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
wfatherley committed Aug 2, 2024
1 parent 9f00951 commit c484323
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"


[project]
authors = [
{name = "Will Fatherley", email = "[email protected]"}
]
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 = "[email protected]"}
]
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]

0 comments on commit c484323

Please sign in to comment.