From 27779bec8f718d8db533bfc10de37750b1e548d8 Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Sat, 8 Jun 2024 15:07:11 -0700 Subject: [PATCH] Expose read_sources --- pyproject.toml | 4 ++-- src/rtl_manifest/__init__.py | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a5ab508..2be3395 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]} \ No newline at end of file +# package-data = {"sample" = ["*.dat"]} diff --git a/src/rtl_manifest/__init__.py b/src/rtl_manifest/__init__.py index 591d4e9..8916bfc 100644 --- a/src/rtl_manifest/__init__.py +++ b/src/rtl_manifest/__init__.py @@ -1,4 +1,5 @@ from .rtl_manifest import rtl_manifest_main +from .rtl_manifest import read_sources def main(): - rtl_manifest_main() \ No newline at end of file + rtl_manifest_main()