From 0c6aed2528e0acf622a489b95363c7cc9eb46758 Mon Sep 17 00:00:00 2001 From: "Jonathan B. Coe" Date: Sun, 31 Mar 2024 17:59:10 +0100 Subject: [PATCH] Add attribution --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 577a74b..d945d9c 100644 --- a/README.md +++ b/README.md @@ -30,3 +30,17 @@ source ./.venv/bin/activate # Activate the virtual env for bash by source. mypy *.py --check-untyped-defs # Run mypy to check type hints. unittest discover . # Run tests. ``` + +## Attribution + +We've made considerable use of the following in putting this together: + +* +* +* + +Design of the python bindings is taken from clang's cindex. + +* + +Mistakes are our own.