preparing for pypi release

This commit is contained in:
Mathew Guest
2020-07-19 00:18:00 -06:00
parent 4e083d6a3d
commit 076e609b80
6 changed files with 37 additions and 9 deletions
+6
View File
@@ -64,6 +64,12 @@ def get_asset(module, filepath):
filepath: the relative filepath of the file to look for in the
package directory.
"""
# NOTE(MG) setuptools suggests using pkg_resources ResourceManager API
# to perform this.
# import pkg_resources
# my_data = pkg_resources.resource_string(__name__, "foo.dat")
# https://setuptools.readthedocs.io/en/latest/pkg_resources.html#resourcemanager-api
if isinstance(module, str):
module_file = sys.modules[module].__file__
elif isinstance(module, module):
+1 -2
View File
@@ -66,8 +66,7 @@ class CommandTree:
self._single_command = None
def print_tree(self):
import pprint
pprint.pprint(self.entries)
raise NotImplemented
def add_argument(self, *args, **kwargs):
"""