├── .gitignore ├── LICENCE ├── README.md ├── install.sh ├── requirements.txt └── tools ├── commit_files.py ├── constants.py ├── create_alias.py ├── create_solution_file.py └── remove_log_files.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikSWE/cp_template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikSWE/cp_template/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikSWE/cp_template/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikSWE/cp_template/HEAD/install.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | GitPython -------------------------------------------------------------------------------- /tools/commit_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikSWE/cp_template/HEAD/tools/commit_files.py -------------------------------------------------------------------------------- /tools/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikSWE/cp_template/HEAD/tools/constants.py -------------------------------------------------------------------------------- /tools/create_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikSWE/cp_template/HEAD/tools/create_alias.py -------------------------------------------------------------------------------- /tools/create_solution_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikSWE/cp_template/HEAD/tools/create_solution_file.py -------------------------------------------------------------------------------- /tools/remove_log_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikSWE/cp_template/HEAD/tools/remove_log_files.py --------------------------------------------------------------------------------