-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinject_runtime_pyproject.py
61 lines (52 loc) · 1.65 KB
/
inject_runtime_pyproject.py
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
"""Custom hook to inject config from runtime pyproject.toml into the main pyproject.toml.
This allows us to specify runtime dependencies and scripts in only one place.
"""
from pathlib import Path
import toml
from hatchling.metadata.plugin.interface import MetadataHookInterface
RUNTIME_PYPROJECT_PATH = "tesseract_core/runtime/meta/pyproject.toml"
BASE_OPTIONAL_DEPS = {
"docs": [
"sphinx",
"sphinx_autodoc_typehints",
"furo",
"myst-parser",
"sphinx_click",
"autodoc_pydantic",
"sphinx_design",
"sphinx_copybutton",
"sphinxext_opengraph",
"tesseract-core[runtime]",
],
"dev": [
"fastapi",
"httpx", # required by fastapi test client
"jsf",
"requests",
"numpy",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-mock",
"moto[server]",
"aiobotocore>=2.19.0", # without this pip dependency resolution fails
"typeguard",
# also add all other extras here
"tesseract-core[runtime]",
"tesseract-core[docs]",
],
"runtime": [],
}
BASE_SCRIPTS = {
"tesseract": "tesseract_core.sdk.cli:entrypoint",
}
class RuntimeDepenencyHook(MetadataHookInterface):
PLUGIN_NAME = "runtime-deps"
def update(self, metadata):
runtime_metadata = toml.load(Path(self.root) / RUNTIME_PYPROJECT_PATH)
metadata["optional-dependencies"] = {
**BASE_OPTIONAL_DEPS,
"runtime": runtime_metadata["project"]["dependencies"],
}
metadata["scripts"] = {**BASE_SCRIPTS, **runtime_metadata["project"]["scripts"]}
return metadata