-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (33 loc) · 1.17 KB
/
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
38
39
40
41
42
43
44
45
46
[project]
name = "simple-sign"
dynamic = ["version", "dependencies"]
description = "helper functions signing simple data using Cardano primitives"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["cardano", "signing", "cip-8"]
authors = [
{name = "R. Spencer", email = "ross@orcfax.io" },
{name = "George Orcfax", email = "george@orcfax.io" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements/requirements.txt"]}
[project.urls]
"Homepage" = "https://orcfax.io/"
"Bug Reports" = "https://github.com/orcfax/simple-sign/issues/"
"Source" = "https://github.com/orcfax/simple-sign/"
[project.scripts]
simple-sign = "simple_sign.sign:main"
[build-system]
requires = ["setuptools>=67.8.0", "wheel", "setuptools_scm[toml]>=7.1.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]