6 lines
130 B
Python
6 lines
130 B
Python
from .__about__ import __name__, __version__
|
|
|
|
|
|
def cli():
|
|
print(f"Running {__name__} version {__version__} from __main__.py")
|