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

committed initial version. don't look at the time-stamp: these files are

dated back in 2003 or so.
This commit is contained in:
mfrasca
2005-09-06 12:23:57 +00:00
parent 0dfd4d7487
commit a092185353
27 changed files with 3909 additions and 0 deletions

26
pywmgeneral/setup.py Executable file
View File

@@ -0,0 +1,26 @@
#! /usr/bin/env python
from distutils.core import setup, Extension
# Set these so they match your system.
XLibDir = '/usr/X11R6/lib'
XIncludes = '/usr/X11R6/include'
module1 = Extension('pywmgeneral',
libraries = ['Xpm', 'Xext', 'X11'],
library_dirs = [XLibDir],
include_dirs = [XIncludes],
sources = ['pywmgeneral.c'])
setup(name = 'pywmgeneral',
py_modules = ['pywmhelpers'],
version = '0.1',
author = 'Kristoffer Erlandsson',
author_email = 'krier115@student.liu.se',
description = 'Python module for making WindowMaker dockapps.',
url = 'http://foo.unix.se/pywmdockapps',
license = 'GPL',
ext_modules = [module1])