@@ -28,6 +28,7 @@ def read(fname):
2828 license = 'BSD-3-Clause' ,
2929 packages = ['pytest_django' ],
3030 long_description = read ('README.rst' ),
31+ python_requires = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' ,
3132 setup_requires = ['setuptools_scm>=1.11.1' ],
3233 install_requires = ['pytest>=2.9' ],
3334 classifiers = ['Development Status :: 5 - Production/Stable' ,
@@ -38,11 +39,11 @@ def read(fname):
3839 'Programming Language :: Python' ,
3940 'Topic :: Software Development :: Testing' ,
4041 'Programming Language :: Python :: 2.7' ,
41- 'Programming Language :: Python :: 3.2' ,
42- 'Programming Language :: Python :: 3.3' ,
4342 'Programming Language :: Python :: 3.4' ,
4443 'Programming Language :: Python :: 3.5' ,
4544 'Programming Language :: Python :: 3.6' ,
45+ 'Programming Language :: Python :: Implementation :: CPython' ,
46+ 'Programming Language :: Python :: Implementation :: PyPy' ,
4647 ],
4748 # the following makes a plugin available to pytest
4849 entry_points = {'pytest11' : ['django = pytest_django.plugin' ]})
0 commit comments