summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Martini <seb@dbzteam.org>2011-01-16 12:55:25 +0100
committerSebastien Martini <seb@dbzteam.org>2011-01-16 12:55:25 +0100
commitf6f50b37a585065a2739f0548b9d0cae8baa14ae (patch)
tree67c2a6c579020925dd15790009f2f2970cf15344
parent7c3903493912664607f847d380d5ddbad99685ef (diff)
downloadpyinotify-f6f50b37a585065a2739f0548b9d0cae8baa14ae.tar.gz
Updated setup.py.
-rwxr-xr-xsetup.py16
1 files changed, 13 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 3d625e6..a51b075 100755
--- a/setup.py
+++ b/setup.py
@@ -22,14 +22,24 @@ if not platform.startswith('linux'):
sys.exit(1)
classif = [
+ 'Development Status :: 5 - Production/Stable',
'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'
+ 'Programming Language :: Python :: 2.4',
+ 'Programming Language :: Python :: 2.5',
+ 'Programming Language :: Python :: 2.6',
+ 'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3.0',
+ 'Programming Language :: Python :: 3.1',
+ 'Programming Language :: Python :: 3.2',
+ 'Topic :: Software Development :: Libraries :: Python Modules',
+ 'Topic :: System :: Filesystems',
+ 'Topic :: System :: Monitoring',
]
if sys.version_info[0] >= 3:
@@ -42,7 +52,7 @@ setup(
version='0.9.1',
description='Linux filesystem events monitoring',
author='Sebastien Martini',
- author_email='sebastien.martini@gmail.com',
+ author_email='seb@dbzteam.org',
license='MIT License',
platforms='Linux',
classifiers=classif,