1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
#!/usr/bin/env python
# check Python's version
import sys
if sys.version < '2.4':
sys.stderr.write('This module requires at least Python 2.4\n')
sys.exit(1)
# import statements
from distutils.core import setup, Extension
from distutils.util import get_platform
# debug
DISTUTILS_DEBUG = False
# get platform
platform = get_platform()
# check linux platform
if not platform.startswith('linux'):
sys.stderr.write("inotify is not available under %s\n" % platform)
sys.exit(1)
classif = [
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Monitoring'
]
if sys.version_info[0] >= 3:
package_dir = {'': 'python3'}
else:
package_dir = {'': 'python2'}
setup(
name='pyinotify',
version='0.8.9',
description='Linux filesystem events monitoring',
author='Sebastien Martini',
author_email='sebastien.martini@gmail.com',
license='MIT License',
platforms='Linux',
classifiers=classif,
url='http://trac.dbzteam.org/pyinotify',
download_url='http://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-0.8.9.tar.gz',
py_modules=['pyinotify'],
package_dir=package_dir,
packages=[''],
)
|