3
from distutils.core import setup
8
# look/set what version we have
9
changelog = "debian/changelog"
10
if os.path.exists(changelog):
11
head=open(changelog).readline()
12
match = re.compile(".*\((.*)\).*").match(head)
14
version = match.group(1)
16
setup(name='five-a-day',
18
scripts=['update-signature',