File: setup.py

package info (click to toggle)
devscripts 2.17.6%2Bdeb9u1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 5,160 kB
  • sloc: perl: 17,543; sh: 8,902; python: 998; makefile: 219; ansic: 11
file content (28 lines) | stat: -rwxr-xr-x 613 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/python3

from setuptools import setup
import os
import re

# look/set what version we have
changelog = "../debian/changelog"
if os.path.exists(changelog):
    head = open(changelog, encoding="utf8").readline()
    match = re.compile(".*\((.*)\).*").match(head)
    if match:
        version = match.group(1)

scripts = [
    'sadt',
    'suspicious-source',
    'wrap-and-sort',
]

if __name__ == '__main__':
    setup(
        name='devscripts',
        version=version,
        scripts=scripts,
        packages=['devscripts', 'devscripts/test'],
        test_suite='devscripts.test.discover',
    )