Verbumped the Python module.
[doldaconnect.git] / lib / python / setup.py
CommitLineData
fbe30a6d 1#!/usr/bin/python
2
3from distutils.core import setup, Extension
4
5dolmod = Extension("dolmod", ["dolmod.c"],
6 libraries = ["dcui"])
7
eee6ca37 8setup(name = "dolcon-py",
fa8e0d93 9 version = "1.1r1",
e24b2187 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/",
fbe30a6d 14 ext_modules = [dolmod],
15 packages = ["dolcon"],
16 license = "GPL-2")