source: trunk/packages/invirt-base/setup.py @ 2147

Last change on this file since 2147 was 2144, checked in by iannucci, 16 years ago

Fixed last yasb hopefully

  • Property svn:executable set to *
File size: 740 bytes
RevLine 
[1206]1#!/usr/bin/python
2
[1208]3from os import path
[1206]4from debian_bundle.changelog import Changelog
5from debian_bundle.deb822 import Deb822
6from email.utils import parseaddr
7from setuptools import setup
8
[1208]9version = Changelog(open(path.join(path.dirname(__file__), 'debian/changelog')).read()).\
[1206]10    get_version().full_version
11
[1208]12maintainer_full = Deb822(open(path.join(path.dirname(__file__), 'debian/control')))['Maintainer']
[1206]13maintainer, maintainer_email = parseaddr(maintainer_full)
14
15setup(
16    name='invirt',
17    version=version,
18    maintainer=maintainer,
19    maintainer_email=maintainer_full,
20   
[1208]21    packages = ['invirt'],
[1206]22    package_dir = {'': 'python'},
[2144]23    scripts=['scripts/invirt-getconf', 'scripts/invirt-reload', 'scripts/invirt-setquotas']
[1206]24)
Note: See TracBrowser for help on using the repository browser.