ubuntu-dev-tools/setup.py

37 lines
920 B
Python
Raw Normal View History

#!/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,
scripts=['404main',
'check-symbols',
'get-branches',
'pbuilder-dist',
'update-maintainer',
'dch-repeat',
'mk-sbuild-lv',
'pull-debian-debdiff',
'what-patch',
'suspicious-source',
2007-09-13 14:36:09 +02:00
'ppaput',
'requestsync',
'hugdaylist',
'massfile',
'submittodebian',
2007-11-20 00:21:41 +01:00
'get-build-deps',
'dgetlp'
],
)