Expose read_sources

This commit is contained in:
Byron Lathi
2024-06-08 15:07:11 -07:00
parent 89f3b8631a
commit 27779bec8f
2 changed files with 4 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ name = "rtl-manifest" # REQUIRED, is the only field that cannot be marked as dy
# https://packaging.python.org/guides/single-sourcing-package-version/
# dynamic = ["version"]
version = "0.1.0" # REQUIRED, although can be dynamic
version = "0.1.1" # REQUIRED, although can be dynamic
# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:
@@ -165,4 +165,4 @@ rtl-manifest = "rtl_manifest:main"
# [tool.setuptools]
# If there are data files included in your packages that need to be
# installed, specify them here.
# package-data = {"sample" = ["*.dat"]}
# package-data = {"sample" = ["*.dat"]}

View File

@@ -1,4 +1,5 @@
from .rtl_manifest import rtl_manifest_main
from .rtl_manifest import read_sources
def main():
rtl_manifest_main()
rtl_manifest_main()