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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
from setuptools import Command
from setuptools import setup
def read(fname):
# makes sure that setup can be executed from a different location
import os.path
_here = os.path.abspath(os.path.dirname(__file__))
return open(os.path.join(_here, fname)).read()
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import subprocess
import sys
errno = subprocess.call([sys.executable, "runtests.py"])
raise SystemExit(errno)
setup(
name="pytest-localserver",
author="Sebastian Rahlf",
author_email="basti@redtoad.de",
maintainer="David Zaslavsky",
maintainer_email="diazona@ellipsix.net",
license="MIT License",
description="pytest plugin to test server connections locally.",
long_description=read("README.rst"),
url="https://github.com/pytest-dev/pytest-localserver",
packages=["pytest_localserver"],
python_requires=">=3.6",
install_requires=["werkzeug>=0.10"],
extras_require={
"smtp": [
"aiosmtpd",
],
},
cmdclass={"test": PyTest},
tests_require=["pytest>=2.0.0", "requests"],
entry_points={"pytest11": ["localserver = pytest_localserver.plugin"]},
zip_safe=False,
include_package_data=True,
keywords="pytest server localhost http smtp",
classifiers=[
"Framework :: Pytest",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"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.13",
"Topic :: Software Development :: Testing",
],
)
|