summaryrefslogtreecommitdiff
path: root/meson.build
blob: 9bfcacac8f2f721bb50a3124072934987dd7a74e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
project('paste')

python = import('python').find_installation(
    modules: ['pygments', 'zstandard', 'aiohttp', 'bozo4'],
)

sources = files(
    'pypaste/__init__.py',
    'pypaste/__main__.py',
    'pypaste/database.py',
    'pypaste/s3.py',
)

python.install_sources(sources, preserve_path: true)