aboutsummaryrefslogtreecommitdiff
blob: f4f86f8b7ed8861e19b607468416315b9a7d9680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
ekeyword_py = configure_file(
    input : 'ekeyword.py',
    output : 'ekeyword.py',
    configuration : conf_data
)

py.install_sources(
    [
        '__init__.py',
        ekeyword_py,
        'test_ekeyword.py',
    ],
    subdir : 'gentoolkit/ekeyword'
)

install_data(
    [
        'Makefile',
        'README',
        'pytest.ini',
    ],
    install_dir : py.get_install_dir() / 'gentoolkit' / 'ekeyword'
)

subdir('tests')