-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.57 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
# hatchling pinned for reproducibility: version should be kept up-to-date
requires = ["hatchling==0.22.0"]
build-backend = "hatchling.build"
[project]
name = "repository-service-tuf"
description = 'Repository Service for TUF Command Line Interface'
readme = "README.rst"
requires-python = ">=3.9"
license = { text = "MIT"}
keywords = []
authors = [
{ name = "Kairo de Araujo", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"beaupy",
"click",
"auto-click-auto",
"dynaconf[ini]==3.1.9",
"setuptools",
"PyNaCl",
"requests",
"rich",
"rich-click",
"prompt-toolkit",
"securesystemslib[crypto]",
"tuf",
"sigstore",
"boto3",
"google-cloud-kms",
"hvac",
"azure-keyvault-keys",
]
dynamic = ["version"]
[tool.mypy]
exclude = "docs/"
[[tool.mypy.overrides]]
module = ["dynaconf", "pretend", "securesystemslib.*",]
ignore_missing_imports = true
[tool.hatch.version]
path = "repository_service_tuf/__version__.py"
[tool.hatch.metadata]
allow-direct-references = true
[project.optional-dependencies]
psycopg2 = ["psycopg2>=2.9.5"] # required by import-artifacts sub-command
sqlalchemy = ["sqlalchemy>=2.0.1"] # required by import-artifacts sub-command
[project.scripts]
rstuf = "repository_service_tuf.cli:rstuf"