diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-07-08 09:19:37 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-07-08 09:19:37 +0000 |
commit | 28c9719d37d58902f1a18b409367af8a49dff81f (patch) | |
tree | 88252a87fe729bf67c0d872f91c18cfe77296ce8 /packages/python/python-opendir/setup.py | |
parent | 3eeff5ac9faefa1b57c0a697fab3e58209de1af5 (diff) | |
parent | ec5f95f1eeeab7fa77450d7e9fc8b2629a0f99ea (diff) |
merge of '26f1976aebe86c41d96f819481534c07971f4cfe'
and '46607c54b809e03372f1d5b8cdebbf77f4ffcd02'
Diffstat (limited to 'packages/python/python-opendir/setup.py')
-rw-r--r-- | packages/python/python-opendir/setup.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/python/python-opendir/setup.py b/packages/python/python-opendir/setup.py new file mode 100644 index 0000000000..d76b22c95a --- /dev/null +++ b/packages/python/python-opendir/setup.py @@ -0,0 +1,25 @@ +from distutils.core import setup +from distutils.extension import Extension +from Cython.Distutils import build_ext + +setup( + name = 'opendir', + version = '0.0.1', + author = 'Gregory Ewing', + author_email = 'greg ewing at canterbury ac nz', + maintainer = 'Johannes "josch" Schauer', + maintainer_email = 'j schauer at email de', + description = 'Implements POSIX opendir', + classifiers = [ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'Operating System :: POSIX', + 'Programming Language :: Pyrex', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: System :: Filesystems' + ], + ext_modules=[ + Extension("opendir", ["opendir.pyx"]), + ], + cmdclass = {'build_ext': build_ext} +) |