File: __main__.py

package info (click to toggle)
python-pysol-cards 0.16.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 272 kB
  • sloc: python: 833; makefile: 5
file content (25 lines) | stat: -rwxr-xr-x 501 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
# pysol_cards v0.16.0
# Deal PySol FC Cards
# Copyright © 2020, Shlomi Fish.
# See /LICENSE for licensing information.

"""
Main routine of pysol_cards.

:Copyright: © 2020, Shlomi Fish.
:License: BSD (see /LICENSE).
"""

__all__ = ('main',)


def main():
    """Main routine of pysol_cards."""
    print("Hello, world!")
    print("This is pysol_cards.")
    print("You should customize __main__.py to your liking (or delete it).")


if __name__ == '__main__':
    main()