ubuntu-dev-tools/setup.py
Daniel Holbach 36772683d0 * README, debian/rules, doc/ppaput.1.docbook, ppaput, setup.py: removed
ppaput for now. It has shortcomings and is not actively used in the
  sponsoring process.
2008-02-22 18:57:56 +01:00

37 lines
925 B
Python
Executable File

#!/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',
'requestsync',
'hugdaylist',
'massfile',
'submittodebian',
'get-build-deps',
'dgetlp'
],
packages=['ubuntutools'],
)