File: init

package info (click to toggle)
python-lib1305 0~20250415.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 120 kB
  • sloc: python: 184; makefile: 2
file content (11 lines) | stat: -rwxr-xr-x 255 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python3

helpstr = "'''\n"
with open('README.md') as f:
    helpstr += f.read()
helpstr += "'''\n"

with open(f'src/lib1305/__init__.py', 'w') as f:
    f.write(helpstr)
    f.write('\n')
    f.write(f'from .onetimeauth import poly1305\n')