Initial commit

This commit is contained in:
Jeehoon Kang
2020-03-17 17:31:16 +09:00
commit b929dc334d
54 changed files with 4368 additions and 0 deletions

18
scripts/make-public.py Executable file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env python3
"""Makes public skeleton.
"""
import os
import subprocess
import itertools
import argparse
import sys
import re
if __name__ == "__main__":
for fullname in os.listdir("src"):
(filename, ext) = os.path.splitext(fullname)
if ext == ".public":
os.rename(os.path.join("src", fullname), os.path.join("src", filename))