diff --git a/setup.py b/setup.py index 6d76dea..ed00ab5 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,8 @@ def read(filename): 'console_scripts': [ 'pytest-watch = pytest_watch:main', 'ptw = pytest_watch:main', - ] + ], + #'pytest11': ["watch = pytest_watch:main"] }, extras_require={ 'testing': DEPS_TESTING, @@ -42,4 +43,7 @@ def read(filename): 'dev:python_version in "2.6, 2.7, 3.2"': ['mock'], 'qa:python_version in "2.6, 2.7, 3.2"': ['mock'], }, + classifiers=[ + "Framework :: Pytest", + ] )