├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE.txt ├── README.md └── weissman.py /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzosaino/weissman-score/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore binaries and temp files 2 | *.py[cod] 3 | __pycache__ 4 | *~ 5 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzosaino/weissman-score/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzosaino/weissman-score/HEAD/README.md -------------------------------------------------------------------------------- /weissman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzosaino/weissman-score/HEAD/weissman.py --------------------------------------------------------------------------------