2007-06-01 11:44:28 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
import glob
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
|
|
|
|
# look/set what version we have
|
|
|
|
changelog = "debian/changelog"
|
|
|
|
if os.path.exists(changelog):
|
|
|
|
head=open(changelog).readline()
|
|
|
|
match = re.compile(".*\((.*)\).*").match(head)
|
|
|
|
if match:
|
|
|
|
version = match.group(1)
|
|
|
|
|
|
|
|
setup(name='ubuntu-dev-tools',
|
|
|
|
version=version,
|
2007-07-04 12:23:13 +02:00
|
|
|
scripts=['404main',
|
|
|
|
'check-symbols',
|
2007-07-27 10:33:19 +02:00
|
|
|
'get-branches',
|
2007-07-04 12:23:13 +02:00
|
|
|
'pbuilder-dist',
|
2007-08-07 18:25:49 +02:00
|
|
|
'update-maintainer',
|
2007-07-04 12:23:13 +02:00
|
|
|
'dch-repeat',
|
|
|
|
'mk-sbuild-lv',
|
|
|
|
'pull-debian-debdiff',
|
2007-07-09 16:17:24 +01:00
|
|
|
'what-patch',
|
2007-08-07 18:25:49 +02:00
|
|
|
'suspicious-source',
|
2007-07-04 12:23:13 +02:00
|
|
|
],
|
2007-06-01 11:44:28 +02:00
|
|
|
)
|
|
|
|
|