summaryrefslogtreecommitdiff
path: root/scripts/internal/generate_manifest.py
blob: 8b6b4f5fae2faca81d187dd3a8eabd8e5170866b (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
27
28
29
30
31
#!/usr/bin/env python

# Copyright (c) 2009 Giampaolo Rodola'. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""
Generate MANIFEST.in file.
"""

import os
import subprocess


def sh(cmd):
    return subprocess.check_output(
        cmd, shell=True, universal_newlines=True).strip()


def main():
    files = sh("git ls-files").split('\n')
    for file in files:
        if file.startswith('.ci/') or \
                os.path.splitext(file)[1] in ('.png', '.jpg') or \
                file in ('.travis.yml', 'appveyor.yml'):
            continue
        print("include " + file)


if __name__ == '__main__':
    main()