forked from csernazs/pytest-httpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (85 loc) · 2.49 KB
/
pyproject.toml
File metadata and controls
97 lines (85 loc) · 2.49 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[tool.poetry]
name = "pytest_httpserver"
version = "1.0.5"
description = "pytest-httpserver is a httpserver for pytest"
authors = ["Zsolt Cserna <cserna.zsolt@gmail.com>"]
license = "MIT"
readme = "README.md"
documentation = "https://pytest-httpserver.readthedocs.io/en/latest/"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"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",
]
repository = "https://github.com/csernazs/pytest-httpserver"
include = [
{ path = "tests", format = "sdist" },
{ path = "CHANGES.rst", format = "sdist" },
{ path = "CONTRIBUTION.md", format = "sdist" },
{ path = "example*.py", format = "sdist" },
{ path = "doc", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.6,<4.0"
Werkzeug = ">= 2.0.0"
pytest = { version = "*", optional = true }
pytest-cov = { version = "*", optional = true }
coverage = { version = "*", optional = true }
ipdb = { version = "*", optional = true }
requests = { version = "*", optional = true }
sphinx = { version = "*", optional = true }
sphinx_rtd_theme = { version = "*", optional = true }
reno = { version = "*", optional = true }
mypy = { version = "*", optional = true }
types-requests = { version = "*", optional = true }
[tool.poetry.extras]
dev = [
"pytest",
"pytest-cov",
"coverage",
"ipdb",
"requests",
"sphinx",
"sphinx_rtd_theme",
"reno",
"mypy",
"types-requests",
]
test = [
"flake8",
"pytest",
"pytest-cov",
"coverage",
"requests",
"mypy",
"types-requests",
]
doc = [
"sphinx",
"sphinx_rtd_theme",
]
[tool.poetry.dev-dependencies]
pre-commit = { version = ">2.9.0", python = ">=3.7,<4.0"}
[tool.poetry.plugins.pytest11]
pytest_httpserver = "pytest_httpserver.pytest_plugin"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/csernazs/pytest-httpserver/issues"
[tool.pytest.ini_options]
markers = [
"ssl: set up ssl context",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
files = ["pytest_httpserver", "scripts", "tests", "doc"]
implicit_reexport = false