diff options
author | John Turner <jturner.usa@gmail.com> | 2025-09-05 19:41:36 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-09-05 19:41:36 -0400 |
commit | c947642875fc3fc3420097748977f5b3ef8b4389 (patch) | |
tree | da3d7bbc83b6065f47b77b0257d4e1935771d0cd /meson.build | |
parent | a7e4eca9f881700dc78bf4baa0ef315378494d0a (diff) | |
download | bozo4-c947642875fc3fc3420097748977f5b3ef8b4389.tar.gz |
create meson.build
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..cb42580 --- /dev/null +++ b/meson.build @@ -0,0 +1,7 @@ +project('bozo4') + +python = import('python').find_installation() + +sources = files('bozo4/__init__.py', 'bozo4/py.typed') + +python.install_sources(sources) |