1
0
mirror of https://github.com/gryf/wmdocklib.git synced 2025-12-18 12:00:20 +01:00

1569327 release 1.1 is broken

trying to clean up things.

wmdocklib now contains the modules to install.
examples all the scripts.
only pywmhdmon.py has been tested.
This commit is contained in:
mfrasca
2006-10-03 07:45:25 +00:00
parent 9ae0e7335b
commit 8f21eaeb2a
16 changed files with 9 additions and 1787 deletions

View File

@@ -7,11 +7,11 @@ XIncludes = '/usr/X11R6/include'
from distutils.core import setup, Extension
module1 = Extension('pywmgeneral',
module1 = Extension('wmdocklib.pywmgeneral',
libraries = ['Xpm', 'Xext', 'X11'],
library_dirs = [XLibDir],
include_dirs = [XIncludes],
sources = ['pywmgeneral/pywmgeneral.c'])
sources = ['wmdocklib/pywmgeneral.c'])
setup(name="pywmdockapps",
version = "$Revision$"[11:-2],
@@ -23,11 +23,11 @@ setup(name="pywmdockapps",
author_email="mfrasca@zonnet.nl",
url="http://ibo.sourceforge.net",
license="(L)GPL",
py_modules=['pywmdatetime.pywmdatetime',
'pywmgeneral.pywmhelpers',
'pywmgeneric.pywmgeneric',
'pywmhdmon.pywmhdmon',
'pywmseti.pywmseti',
'pywmsysmon.pywmsysmon',
],
packages=['wmdocklib',
],
scripts=['examples/pywmdatetime.py',
'examples/pywmhdmon.py',
'examples/pywmseti.py',
'examples/pywmsysmon.py',
'examples/setup.py'],
ext_modules = [module1])