More messing with the project file.
[pyutils.git] / examples / pyskel / pyskel.py
1 #!/usr/bin/env python3
2
3 """The start of something cool...
4
5 This is a skeleton python script that I keep around and use as the
6 start of any new utility that I'm working on.
7 """
8
9 import logging
10 from typing import Optional
11
12 from pyutils import bootstrap, config
13
14 logger = logging.getLogger(__name__)
15 args = config.add_commandline_args(f'({__file__})', f'Args related to {__file__}')
16
17
18 @bootstrap.initialize
19 def main() -> Optional[int]:
20     print('Hello world.')
21     return None
22
23
24 if __name__ == '__main__':
25     main()