-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathwtfpl.py
57 lines (42 loc) · 1.41 KB
/
wtfpl.py
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
################################################################
# Usage:
#
# $ py3 wtfpl.py
# Name : wtfpl.py
# Version : 0
# Status : Development
# Contact : <[email protected]>
# Licence : WTFPLv3.1
#
# Copyleft (ↄ) 2019, dtf <[email protected]>
################################################################
import datetime
import os
__version__ = "0"
__status__ = "Development"
__author__ = "dtf"
__credits__ = ["Banlu Kemiyatorn", "Sam Hocevar", "theiostream", __author__]
__maintainer__ = __author__
__email__ = "<[email protected]>"
__licence__ = "WTFPLv3.1"
__gcy__ = str(datetime.datetime.now().year)
__copyleft__ = "Copyleft (ↄ) {}, {} {}".format(__gcy__, __author__, __email__)
__license__ = __licence__
__copyright__ = __copyleft__
# This project is libre, and licenced under the terms of the
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENCE, version 3.1,
# as published by dtf on July 2019. See the COPYING file or
# https://ph.dtf.wtf/w/wtfpl/#version-3-1 for more details.
################################################################
if __name__ == "__main__":
print("""
Name : {}
Version : {}
Status : {}
Contact : {}
Licence : {}
Credits : {}
{}
""".format(os.path.basename(__file__), __version__, __status__, __email__, __licence__, __credits__, __copyright__))