mirror of
https://github.com/gryf/wmdocklib.git
synced 2025-12-17 19:40:23 +01:00
28 lines
855 B
Python
28 lines
855 B
Python
from distutils.core import Extension
|
|
from distutils.core import setup
|
|
|
|
# Set these so they match your system.
|
|
XLIBDIR = '/usr/X11R6/lib'
|
|
XINCLUDES = '/usr/X11R6/include'
|
|
|
|
|
|
MODULE1 = Extension('wmdocklib.pywmgeneral',
|
|
libraries=['Xpm', 'Xext', 'X11'],
|
|
library_dirs=[XLIBDIR],
|
|
include_dirs=[XINCLUDES],
|
|
sources=['wmdocklib/pywmgeneral.c'])
|
|
|
|
with open('README.rst') as fobj:
|
|
LONG_DESC = fobj.read()
|
|
|
|
setup(name="wmdocklib",
|
|
version="1.23",
|
|
description="Library for creating dockapps for Window Maker/AfterStep",
|
|
long_description=LONG_DESC,
|
|
author="Kristoffer Erlandsson & al.",
|
|
author_email="mfrasca@zonnet.nl",
|
|
url="http://pywmdockapps.sourceforge.net",
|
|
license="(L)GPL",
|
|
packages=['wmdocklib'],
|
|
ext_modules=[MODULE1])
|