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
96 lines (86 loc) · 2.34 KB
/
pyproject.toml
File metadata and controls
96 lines (86 loc) · 2.34 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
[tool.poetry]
name = "pytest_httpserver"
version = "1.0.3"
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 = [
"tests",
"CHANGES.rst",
"CONTRIBUTION.md",
"tests/*.py",
"tests/assets/*",
"example*.py",
"requirements-doc.txt",
"doc",
"setup.cfg",
]
[tool.poetry.dependencies]
python = ">=3.6,<4.0"
Werkzeug = ">= 2.0.0"
flake8 = { version = "*", optional = true }
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 }
autopep8 = { version = "*", optional = true }
mypy = { version = "*", optional = true }
types-requests = { version = "*", optional = true }
[tool.poetry.extras]
dev = [
"flake8",
"pytest",
"pytest-cov",
"coverage",
"ipdb",
"requests",
"sphinx",
"sphinx_rtd_theme",
"reno",
"autopep8",
"mypy",
"types-requests",
]
test = [
"flake8",
"pytest",
"pytest-cov",
"coverage",
"requests",
"mypy",
"types-requests",
]
doc = [
"sphinx",
"sphinx_rtd_theme",
"reno",
]
[tool.poetry.dev-dependencies]
[tool.poetry.plugins.pytest11]
pytest_httpserver = "pytest_httpserver.pytest_plugin"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/csernazs/pytest-httpserver/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"