We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84a4197 commit 62caad1Copy full SHA for 62caad1
3 files changed
bna/__main__.py
@@ -0,0 +1,5 @@
1
+from .cli import main as __main__
2
+
3
+__all__ = ["__main__"]
4
5
+__main__()
bin/bna bna/cli.pybin/bna renamed to bna/cli.py
@@ -1,5 +1,3 @@
-#!/usr/bin/env python
-
import base64
import os
import sys
pyproject.toml
@@ -23,6 +23,9 @@ pyotp = "^2.4.0"
23
[tool.poetry.dev-dependencies]
24
pytest = "^6.2.1"
25
26
+[tool.poetry.scripts]
27
+bna = "bna.cli:main"
28
29
[build-system]
30
requires = ["poetry>=0.12"]
31
build-backend = "poetry.masonry.api"
0 commit comments