27b74e79aae47eab3ab4163dc8215db95c15799a
[doldaconnect.git] / lib / python / setup.py
1 #!/usr/bin/python
2
3 from distutils.core import setup, Extension
4
5 dolmod = Extension("dolmod", ["dolmod.c"],
6                    libraries = ["dcui"])
7
8 setup(name = "dolcon-py",
9       version = "0.3.1",
10       description = "Python glue module for libdcui",
11       author = "Fredrik Tolf",
12       author_email = "fredrik@dolda2000.com",
13       url = "http://www.dolda2000.com/~fredrik/doldaconnect/",
14       ext_modules = [dolmod],
15       packages = ["dolcon"],
16       license = "GPL-2")