forked from miketheman/pytest-socket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 2.09 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
[tool.poetry]
name = "pytest-socket"
version = "0.5.1"
description = "Pytest Plugin to disable socket calls during tests"
authors = ["Mike Fiedler <miketheman@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://pypi.org/project/pytest-socket/"
repository = "https://github.com/miketheman/pytest-socket"
include = [
{ path = "LICENSE" },
{ path = "README.md" },
{ path = "tests", format = "sdist" },
{ path = "pytest.ini", format = "sdist" },
{ path = ".coveragerc", format = "sdist" },
{ path = ".flake8", format = "sdist" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = "^3.7"
pytest = ">=3.6.3"
[tool.poetry.dev-dependencies]
coverage = "^7.0"
pytest = "^7.0"
pytest-httpbin = "^1.0"
pytest-randomly = "^3.5.0"
asynctest = "^0.13.0"
requests = "^2.26.0"
starlette = "^0.23.0"
httpx = "^0.23.0"
# See https://github.com/postmanlabs/httpbin/pull/674
httpbin = { git = "https://github.com/maximino-dev/httpbin.git", rev = "651c03a73" }
[tool.poetry.plugins.pytest11]
socket = 'pytest_socket'
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/miketheman/pytest-socket/issues"
"Change Log" = "https://github.com/miketheman/pytest-socket/blob/main/CHANGELOG.md"
[tool.isort]
known_first_party = ['pytest_socket', 'conftest', 'test_socket']
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#profilegcm
profile = "black"
[tool.vulture]
ignore_decorators = ["@pytest.fixture"]
ignore_names = ["pytest_*"]
paths = ["pytest_socket.py"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"