~ubuntu-branches/ubuntu/utopic/xen/utopic

« back to all changes in this revision

Viewing changes to tools/xc/py/setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2010-05-06 15:47:38 UTC
  • mto: (1.3.1) (15.1.1 sid) (4.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20100506154738-agoz0rlafrh1fnq7
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
from distutils.core import setup, Extension
3
 
 
4
 
module = Extension("Xc",
5
 
                   include_dirs         = ["../lib"],
6
 
                   library_dirs         = ["../lib"],
7
 
                   libraries            = ["xc"],
8
 
                   sources              = ["Xc.c"])
9
 
 
10
 
setup(name = "Xc", version = "1.0", ext_modules = [module])
11
 
 
12
 
setup(name = "XenoUtil", version = "1.0", py_modules = ["XenoUtil"])