A template Python project for bootstrapping tool development
The Software Systems Laboratory (SSL) Template Python Project is a git
repository that can be cloned and modified to bootstrap development of tools for the greater SSL Metrics project. It can also be modified by outside teams or individuals for usage of their own personal projects.
This project is licensed under the BSD-3-Clause. See the LICENSE for more information.
To maximize the utility of this project and the greater SSL Metrics project, the following software packages are required:
All tools developed for the greater SSL Metrics project must target Mac OS and Linux. SSL Metrics software is not supported or recommended to run on Windows but can be modified to do so at your own risk.
It is recomendded to develop on Mac OS or Linux. However, if you are on a Windows machine, you can use WSL to develop as well.
git
jq
wc
The software listed in this section is meant for developing tools
All listed Python software assumes that you have downloaded and installed Python 3.9.6 or greater.
black
build
isort
pylint
You can install all of the Python software with this one-liner:
pip install --upgrade black build isort pip pylint
It is recomended to create a new repository with GitHub referencing this template and then cloning the new repository.
- Change the name of the package folder from
ssl_metrics_MODULE_NAME
to your packages name - Fix all
TODOs