root/pyxcb/setup.py

Revision db8c5e103011783b6d0173f0df1163149c2d59a8, 0.8 KB (checked in by Friedrich Weber <fred@…>, 19 months ago)

Moved xcb to an own package pyxcb.

  • pyxcb: less dependency cycles
  • sx-wm, sx-event: use pyxcb
  • Property mode set to 100644
Line 
1from setuptools import setup, find_packages
2import sys, os
3
4setup(name='pyxcb',
5    version="0.1",
6    description="A Python Xcb binding using ctypes",
7    long_description="pyxcb is a binding to the X C Binding using ctypes.",
8    # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
9    classifiers=[
10        'Development Status :: 3 - Alpha',
11        'Environment :: X11 Applications',
12        'Intended Audience :: Developers',
13        'License :: OSI Approved :: BSD License',
14        'Operating System :: POSIX',
15        'Programming Language :: Python',
16    ], 
17    keywords='xcb X11 binding',
18    author='Friedrich Weber',
19    author_email='fred.reichbier@googlemail.com',
20    url='http://samurai-x.org',
21    license='BSD',
22    packages=find_packages(),
23)
24
25
Note: See TracBrowser for help on using the browser.