File: setup.py

package info (click to toggle)
ubuntu-dev-tools 0.166
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,116 kB
  • sloc: python: 8,818; sh: 1,144; perl: 167; makefile: 10
file content (77 lines) | stat: -rwxr-xr-x 1,983 bytes parent folder | download
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/python

from setuptools import setup
import glob
import os
import re
import sys
import codecs

# look/set what version we have
changelog = "debian/changelog"
if os.path.exists(changelog):
    head = codecs.open(changelog, 'r', 'utf-8', 'replace').readline()
    match = re.compile(r".*\((.*)\).*").match(head)
    if match:
        version = match.group(1)

if sys.version_info[0] >= 3:
    scripts = []
    data_files = []
else:
    scripts = [
        '404main',
        'backportpackage',
        'bitesize',
        'check-mir',
        'check-symbols',
        'dch-repeat',
        'grab-merge',
        'grep-merges',
        'hugdaylist',
        'import-bug-from-debian',
        'merge-changelog',
        'mk-sbuild',
        'pbuilder-dist',
        'pbuilder-dist-simple',
        'pull-debian-debdiff',
        'pull-debian-source',
        'pull-lp-source',
        'pull-revu-source',
        'pull-uca-source',
        'requestbackport',
        'requestsync',
        'reverse-build-depends',
        'reverse-depends',
        'seeded-in-ubuntu',
        'setup-packaging-environment',
        'sponsor-patch',
        'submittodebian',
        'syncpackage',
        'ubuntu-build',
        'ubuntu-iso',
        'ubuntu-upload-permission',
        'update-maintainer',
    ]
    data_files = [
        ('share/bash-completion/completions', glob.glob("bash_completion/*")),
        ('share/man/man1', glob.glob("doc/*.1")),
        ('share/man/man5', glob.glob("doc/*.5")),
        ('share/ubuntu-dev-tools', ['enforced-editing-wrapper']),
    ]

if __name__ == '__main__':
    setup(
        name='ubuntu-dev-tools',
        version=version,
        scripts=scripts,
        packages=[
            'ubuntutools',
            'ubuntutools/lp',
            'ubuntutools/requestsync',
            'ubuntutools/sponsor_patch',
            'ubuntutools/test',
        ],
        data_files=data_files,
        test_suite='ubuntutools.test.discover',
    )