enable use without install

This commit is contained in:
Florent 2025-04-18 12:44:58 +02:00
parent 74bc29e61f
commit b0b2841399
2 changed files with 4 additions and 1 deletions

View file

@ -17,7 +17,7 @@ classifiers = [
] ]
license = "MIT" license = "MIT"
license-files = ["LICEN[CS]E*"] license-files = ["LICEN[CS]E*"]
dependencies = [ "meshcore >= 1.9.5" ] dependencies = [ "meshcore >= 1.9.6" ]
[project.urls] [project.urls]
Homepage = "https://github.com/fdlamotte/meshcore-cli" Homepage = "https://github.com/fdlamotte/meshcore-cli"

View file

@ -994,3 +994,6 @@ def cli():
print("\nExited cleanly") print("\nExited cleanly")
except Exception as e: except Exception as e:
print(f"Error: {e}") print(f"Error: {e}")
if __name__ == '__main__':
cli()