merge of '49118a4c6035353c0f8cf1aa30297dd36e43241f'
[vuplus_openembedded] / packages / python / python-opendir / setup.py
1 from distutils.core import setup
2 from distutils.extension import Extension
3 from Cython.Distutils import build_ext
4
5 setup(
6   name = 'opendir',
7   version = '0.0.1',
8   author = 'Gregory Ewing',
9   author_email = 'greg ewing at canterbury ac nz',
10   maintainer = 'Johannes "josch" Schauer',
11   maintainer_email = 'j schauer at email de',
12   description = 'Implements POSIX opendir',
13   classifiers = [
14     'Development Status :: 4 - Beta',
15     'Intended Audience :: Developers',
16     'Operating System :: POSIX',
17     'Programming Language :: Pyrex',
18     'Topic :: Software Development :: Libraries :: Python Modules',
19     'Topic :: System :: Filesystems'
20   ],
21   ext_modules=[ 
22     Extension("opendir", ["opendir.pyx"]),
23     ],
24   cmdclass = {'build_ext': build_ext}
25 )