forked from csernazs/pytest-httpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·64 lines (61 loc) · 1.86 KB
/
setup.py
File metadata and controls
executable file
·64 lines (61 loc) · 1.86 KB
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
#!/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",
],
)