]> git.sesse.net Git - itkacl/blob - python-itkacl-2.0/setup.py
Release a new version of the Apache module, with the context support.
[itkacl] / python-itkacl-2.0 / setup.py
1 #!/usr/bin/env python
2
3 """
4 setup.py file for ITKACL
5 """
6
7 from distutils.core import setup, Extension
8
9
10 itkacl_module = Extension('_itkacl',
11                            sources=['itkacl.i'],
12                            libraries=['itkacl'],
13                            )
14
15 setup (name = 'itkacl',
16        version = '2.0',
17        author      = "Steinar H. Gunderson",
18        description = """Python interface to ITKACL""",
19        ext_modules = [itkacl_module],
20        py_modules = ["itkacl"],
21        )