Skip to content

Commit c484323

Browse files
committed
add pyproject metadata
1 parent 9f00951 commit c484323

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

pyproject.toml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
[build-system]
2+
requires = ["setuptools", "setuptools_scm"]
3+
build-backend = "setuptools.build_meta"
4+
5+
6+
[project]
7+
authors = [
8+
{name = "Will Fatherley", email = "[email protected]"}
9+
]
10+
classifiers = [
11+
"Intended Audience :: Developers",
12+
"Topic :: Security :: Cryptography",
13+
"License :: OSI Approved :: MIT License",
14+
"Programming Language :: Python :: 3"
15+
]
16+
description = "HMAC-base key derivation function (IETF RFC 5869) implemented with Python"
17+
dynamic = [
18+
"version"
19+
]
20+
license = {file = "LICENSE.md"}
21+
maintainers = [
22+
{name = "Will Fatherley", email = "[email protected]"}
23+
]
24+
name = "hkdfref"
25+
readme = {file = "README.md", content-type = "text/markdown"}
26+
27+
28+
[project.urls]
29+
repository = "https://github.com/wfatherley/hkdfref.git"
30+
31+
32+
# [project.scripts]
33+
# hkdf = hkdfref:cli
34+
35+
36+
[tool.setuptools.packages.find]
37+
where = ["src"]
38+
include = ["hkdfref"]
39+
40+
[tool.setuptools_scm]

0 commit comments

Comments
 (0)