#!/usr/bin/env python3 from setuptools import setup, find_packages DESCRIPTION = open("README.md").read() setup( name="pytest_httpserver", version="1.0.1", url="https://www.github.com/csernazs/pytest-httpserver", packages=find_packages(), 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.4", install_requires=[ "typing;python_version<'3.5'", "werkzeug" ], extras_require={ "dev": [ "flake8", "wheel", "pytest", "pytest-cov", "coverage", "ipdb", "requests", "sphinx", "sphinx_rtd_theme", "reno", "autopep8", ], "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.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Libraries :: Python Modules", "Framework :: Pytest", ], )