summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-08-31 15:12:25 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-08-31 15:12:25 -0400
commit77aed748d2003a547662fb035fa6f9b13e2cb11f (patch)
tree66b8d618ba0f449e2826da5a7fa2acdfe775bf83 /meson.build
parenta55fa6f0d434b2f52852859a10341050b4405ee9 (diff)
downloadpypaste-77aed748d2003a547662fb035fa6f9b13e2cb11f.tar.gz
create meson.build
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build9
1 files changed, 9 insertions, 0 deletions
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..c27e9eb
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,9 @@
+project('paste')
+
+python = import('python').find_installation(modules: ['pygments', 'zstandard'])
+
+install_data(
+ 'src/paste.py',
+ rename: ['paste'],
+ install_dir: get_option('bindir'),
+)