summaryrefslogtreecommitdiff
path: root/meson.build
blob: 7c9ab8460f107cdecc7921d4f56b214bbac5ad08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
project('paste')

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

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

python.install_sources(sources, preserve_path: true)

install_data(
    'eff_large_wordlist.txt',
    install_dir: get_option('datadir') / 'dict',
)