blob: 467f2c377014c09b6d3c042f86fbf4fe6316abfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
project('paste')
python = import('python').find_installation(
modules: ['pygments', 'zstandard', 'aiohttp', 'bozo4'],
)
sources = files(
'pypaste/__main__.py',
'pypaste/database/__init__.py',
'pypaste/s3.py',
)
python.install_sources(sources, preserve_path: true)
|