1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#!/usr/bin/env python
from setuptools import setup
import os
__here__ = os.path.abspath(os.path.dirname(__file__))
from pytest_order import __version__
with open(os.path.join(__here__, "README.md")) as f:
LONG_DESCRIPTION = f.read()
setup(
name="pytest-order",
description="pytest plugin to run your tests in a specific order",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
version=__version__,
author="mrbean-bremen",
author_email="hansemrbean@googlemail.com",
url="https://github.com/pytest-dev/pytest-order",
packages=["pytest_order"],
license="MIT",
entry_points={
"pytest11": [
"pytest_order = pytest_order.plugin",
]
},
python_requires=">=3.7",
install_requires=[
"pytest>=5.0; python_version < '3.10'",
"pytest>=6.2.4; python_version >= '3.10'",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)
|