| Line | |
|---|
| 1 | from setuptools import setup, find_packages |
|---|
| 2 | import sys, os |
|---|
| 3 | |
|---|
| 4 | setup(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 | |
|---|