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
90 lines (74 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
90 lines (74 loc) · 2.08 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
[tool.poetry]
name = "pytest_httpserver"
version = "1.0.8"
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",
"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.8,<4.0"
Werkzeug = ">= 2.0.0"
[tool.poetry.plugins.pytest11]
pytest_httpserver = "pytest_httpserver.pytest_plugin"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/csernazs/pytest-httpserver/issues"
[tool.poetry.group.develop]
optional = true
[tool.poetry.group.develop.dependencies]
pre-commit = "^2.20.0"
requests = "^2.28.1"
Sphinx = "^5.1.1"
sphinx-rtd-theme = "^1.0.0"
reno = "^3.5.0"
mypy = "^0.971"
types-requests = "^2.28.9"
pytest = "^7.1.3"
pytest-cov = ">=3,<5"
coverage = ">=6.4.4,<8.0.0"
types-toml = "^0.10.8"
toml = "^0.10.2"
black = "^23.1.0"
[tool.poetry.group.doc]
optional = true
[tool.poetry.group.doc.dependencies]
Sphinx = "^5.1.1"
sphinx-rtd-theme = "^1.0.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
pytest-cov = ">=3,<5"
coverage = ">=6.4.4,<8.0.0"
requests = "^2.28.1"
mypy = "^0.971"
types-requests = "^2.28.9"
pre-commit = "^2.20.0"
types-toml = "^0.10.8"
toml = "^0.10.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"ssl: set up ssl context",
"release: run release tests",
]
[tool.mypy]
files = ["pytest_httpserver", "scripts", "tests", "doc"]
implicit_reexport = false