ubuntu-dev-tools/setup.py

46 lines
1.2 KiB
Python
Raw Normal View History

#!/usr/bin/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,
2008-08-09 14:12:06 +02:00
scripts=['404main',
'buildd',
2008-08-09 14:12:06 +02:00
'check-symbols',
'dch-repeat',
'dgetlp',
'get-branches',
2008-08-09 14:12:06 +02:00
'get-build-deps',
'grab-attachments',
'hugdaylist',
'lp-set-dup',
'manage-credentials',
2008-08-09 14:12:06 +02:00
'massfile',
'mk-sbuild-lv',
'pbuilder-dist',
2008-02-25 21:11:24 +01:00
'pbuilder-dist-simple',
'pull-debian-debdiff',
'pull-debian-source',
2008-08-09 14:12:06 +02:00
'pull-lp-source',
'requestsync',
2008-03-18 14:08:33 +01:00
'reverse-build-depends',
2008-08-09 14:12:06 +02:00
'submittodebian',
'suspicious-source',
2008-10-02 22:36:26 +01:00
'ubuntu-iso',
2008-08-09 14:12:06 +02:00
'update-maintainer',
'what-patch',
],
packages=['ubuntutools'],
)