changed wmdocklib to pywmdockapps
This commit is contained in:
parent
16ca19db37
commit
7a00d8b440
17
setup.py
17
setup.py
@ -1,27 +1,28 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
from __future__ import absolute_import
|
||||||
|
from setuptools import setup, Extension
|
||||||
|
|
||||||
# Set these so they match your system.
|
# Set these so they match your system.
|
||||||
from __future__ import absolute_import
|
|
||||||
XLibDir = '/usr/lib/x11'
|
XLibDir = '/usr/lib/x11'
|
||||||
XIncludes = '/usr/include/x11'
|
XIncludes = '/usr/include/x11'
|
||||||
|
|
||||||
from setuptools import setup, Extension
|
# Changed 'wmdocklib.pywmgeneral' -> 'pywmdockapps.pywmgeneral'
|
||||||
|
# Changed source path 'wmdocklib/pywmgeneral.c' -> 'pywmdockapps/pywmgeneral.c'
|
||||||
pywmgeneral = Extension('wmdocklib.pywmgeneral',
|
pywmgeneral = Extension('pywmdockapps.pywmgeneral',
|
||||||
libraries = ['Xpm', 'Xext', 'X11'],
|
libraries = ['Xpm', 'Xext', 'X11'],
|
||||||
library_dirs = [XLibDir],
|
library_dirs = [XLibDir],
|
||||||
include_dirs = [XIncludes],
|
include_dirs = [XIncludes],
|
||||||
sources = ['wmdocklib/pywmgeneral.c'])
|
sources = ['pywmdockapps/pywmgeneral.c'])
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="pywmdockapps",
|
name="pywmdockapps",
|
||||||
version = "$Revision: 1.99 $"[11:-2],
|
version = "$Revision: 1.99 $"[11:-2],
|
||||||
description="This helper functions for windowmaker dockapps\nRead the whole story at http://pywmdockapps.sourceforge.net/",
|
description="This helper functions for windowmaker dockapps",
|
||||||
author="Kristoffer Erlandsson & al.",
|
author="Kristoffer Erlandsson & al.",
|
||||||
author_email="mfrasca@zonnet.nl",
|
author_email="mfrasca@zonnet.nl",
|
||||||
url="http://pywmdockapps.sourceforge.net",
|
url="http://pywmdockapps.sourceforge.net",
|
||||||
license="(L)GPL",
|
license="(L)GPL",
|
||||||
packages=['wmdocklib'],
|
packages=['pywmdockapps'], # Changed here
|
||||||
package_data={'wmdocklib': ['*.xpm']},
|
package_data={'pywmdockapps': ['*.xpm']}, # Changed here
|
||||||
ext_modules=[pywmgeneral],
|
ext_modules=[pywmgeneral],
|
||||||
)
|
)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user