@@ -28,6 +28,7 @@ def read(fname):
28
28
license = 'BSD-3-Clause' ,
29
29
packages = ['pytest_django' ],
30
30
long_description = read ('README.rst' ),
31
+ python_requires = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' ,
31
32
setup_requires = ['setuptools_scm>=1.11.1' ],
32
33
install_requires = ['pytest>=2.9' ],
33
34
classifiers = ['Development Status :: 5 - Production/Stable' ,
@@ -38,11 +39,11 @@ def read(fname):
38
39
'Programming Language :: Python' ,
39
40
'Topic :: Software Development :: Testing' ,
40
41
'Programming Language :: Python :: 2.7' ,
41
- 'Programming Language :: Python :: 3.2' ,
42
- 'Programming Language :: Python :: 3.3' ,
43
42
'Programming Language :: Python :: 3.4' ,
44
43
'Programming Language :: Python :: 3.5' ,
45
44
'Programming Language :: Python :: 3.6' ,
45
+ 'Programming Language :: Python :: Implementation :: CPython' ,
46
+ 'Programming Language :: Python :: Implementation :: PyPy' ,
46
47
],
47
48
# the following makes a plugin available to pytest
48
49
entry_points = {'pytest11' : ['django = pytest_django.plugin' ]})
0 commit comments