#!/usr/bin/env python3 from setuptools import setup, find_packages VERSION = "1.0.2" DESCRIPTION = open("README.md").read() setup( name="pytest_httpserver", version=VERSION, url="https://www.github.com/csernazs/pytest-httpserver", packages=find_packages(), package_data={"pytest_httpserver": ["py.typed"]}, author="Zsolt Cserna", author_email="cserna.zsolt@gmail.com", description="pytest-httpserver is a httpserver for pytest", entry_points={"pytest11": ["pytest_httpserver = pytest_httpserver.pytest_plugin"]}, long_description=DESCRIPTION, long_description_content_type="text/markdown", python_requires=">=3.6", install_requires=[ "werkzeug" ], extras_require={ "dev": [ "flake8", "wheel", "pytest", "pytest-cov", "coverage", "ipdb", "requests", "sphinx", "sphinx_rtd_theme", "reno", "autopep8", "mypy", ], "test": [ "pytest", "pytest-cov", "coverage", "requests", ], }, tests_require=["pytest", "requests"], license="MIT", platforms="any", classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "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", "Topic :: Software Development :: Libraries :: Python Modules", "Framework :: Pytest", ], )