From 891f69ea4cd55f5b4484fd7316dc5307ba5de9fd Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Wed, 20 Apr 2022 22:44:56 +0300 Subject: [PATCH] Python code. Just the package and a main function. --- sampleproject/__init__.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sampleproject/__init__.py diff --git a/sampleproject/__init__.py b/sampleproject/__init__.py new file mode 100644 index 0000000..14df195 --- /dev/null +++ b/sampleproject/__init__.py @@ -0,0 +1,11 @@ +"""Sample Python project.""" +__version__ = "0.0.1" + + +def main(): + """Main entrypoint""" + print("OK") + + +if __name__ == "__main__": + main() -- GitLab