summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Martini <seb@dbzteam.org>2014-07-13 09:14:26 +0200
committerSebastien Martini <seb@dbzteam.org>2014-07-13 09:14:26 +0200
commitcd9574199c585f7dc9d7ac9bac03be180ed63c0b (patch)
treece45b3dc19a2aee9b22be1f804b36d03b552156e
parenta52442de1b19b59d5f6144f2d60c2fd2b010a353 (diff)
downloadpyinotify-cd9574199c585f7dc9d7ac9bac03be180ed63c0b.tar.gz
Add new classifiers.
Closes #79
-rwxr-xr-xsetup.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 355340d..b4f712e 100755
--- a/setup.py
+++ b/setup.py
@@ -46,6 +46,10 @@ classif = [
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
+ 'Programming Language :: Python :: 3.3',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: Implementation :: CPython',
+ 'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Filesystems',
'Topic :: System :: Monitoring',
@@ -93,7 +97,7 @@ if compile_ext_mod or should_compile_ext_mod():
# sources for ext module
ext_mod_src = ['common/inotify_syscalls.c']
# dst for ext module
- ext_mod.append(distutils.extension.Extension('inotify_syscalls',
+ ext_mod.append(distutils.extension.Extension('inotify_syscalls',
ext_mod_src))