From 0417a5008580a5caae41d30c3cff4db69c1db0f8 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Thu, 24 Jul 2025 09:25:49 -0500 Subject: [PATCH] bug fix: meta data and dependency clean up --- cms/__init__.py | 1 - cms/meta/__init__.py | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 cms/meta/__init__.py diff --git a/cms/__init__.py b/cms/__init__.py index fd565fc..ab4a503 100644 --- a/cms/__init__.py +++ b/cms/__init__.py @@ -1,7 +1,6 @@ from genericpath import isdir import os import pandas as pd -import transport import copy from jinja2 import Environment, BaseLoader, FileSystemLoader import importlib diff --git a/cms/meta/__init__.py b/cms/meta/__init__.py new file mode 100644 index 0000000..83083b8 --- /dev/null +++ b/cms/meta/__init__.py @@ -0,0 +1,15 @@ +__author__ = "Steve L. Nyemba" +__version__= "2.2.22" +__email__ = "steve@the-phi.com" +__license__=""" +Copyright 2010 - 2024, Steve L. Nyemba, Vanderbilt University Medical Center + + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +"""