mirror of
https://github.com/gryf/wmdocklib.git
synced 2025-12-19 12:28:10 +01:00
27 lines
753 B
Python
Executable File
27 lines
753 B
Python
Executable File
#! /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])
|
|
|