-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (30 loc) · 878 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[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"}
requires-python = ">=3.9"
[project.urls]
repository = "https://github.com/wfatherley/hkdfref.git"
[tool.setuptools.packages.find]
where = ["src"]
include = ["hkdfref"]
[tool.setuptools_scm]