File: __main__.py

package info (click to toggle)
python-sop 0.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 156 kB
  • sloc: python: 944; sh: 9; makefile: 8
file content (11 lines) | stat: -rw-r--r-- 266 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python3
from sop import StatelessOpenPGP
from .__version__ import __version__
# NOTE: this should give errors for everything :)

def main() -> None:
    sop = StatelessOpenPGP(version=__version__)
    sop.dispatch()

if __name__ == '__main__':
    main()