diff --git a/LICENSE b/LICENSE index dd1444f52..4e6787f63 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ pytest-django is released under the BSD (3-clause) license ---------------------------------------------------------- -Copyright (c) 2015, pytest-django authors (see AUTHORS file) +Copyright (c) 2015-2018, pytest-django authors (see AUTHORS file) All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.rst b/README.rst index 81df0df18..4da5cd8e6 100644 --- a/README.rst +++ b/README.rst @@ -28,7 +28,7 @@ pytest-django allows you to test your Django project/applications with the `_ * Version compatibility: - * Django: 1.8-1.11 and latest master branch (compatible at the time of each release) + * Django: 1.8-1.11, 2.0 and latest master branch (compatible at the time of each release) * Python: CPython 2.7, 3.4-3.6 or PyPy 2, 3 * pytest: >2.9.x diff --git a/setup.py b/setup.py index 285708f00..e25d5e4ef 100755 --- a/setup.py +++ b/setup.py @@ -33,17 +33,22 @@ def read(fname): install_requires=['pytest>=2.9'], classifiers=['Development Status :: 5 - Production/Stable', 'Framework :: Django', + 'Framework :: Django :: 1.8', + 'Framework :: Django :: 1.9', + 'Framework :: Django :: 1.10', + 'Framework :: Django :: 1.11', + 'Framework :: Django :: 2.0', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Topic :: Software Development :: Testing', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', + 'Topic :: Software Development :: Testing', ], # the following makes a plugin available to pytest entry_points={'pytest11': ['django = pytest_django.plugin']})