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