-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
69 lines (61 loc) · 2.17 KB
/
pyproject.toml
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
[tool.poetry]
name = "pytest-socket"
version = "0.7.0"
description = "Pytest Plugin to disable socket calls during tests"
authors = ["Mike Fiedler <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://pypi.org/project/pytest-socket/"
repository = "https://github.com/miketheman/pytest-socket"
include = [
{ path = "LICENSE", format = "sdist" },
{ path = "README.md", format = "sdist" },
{ path = "tests", 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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = "^3.8"
pytest = ">=7.0.0"
[tool.poetry.dev-dependencies]
coverage = "^7.6"
pytest-httpbin = "^2.1.0"
pytest-randomly = "^3.15.0"
requests = "^2.32.3"
starlette = "^0.40.0"
httpx = "^0.27.2"
# Waiting for new release. See https://github.com/psf/httpbin/issues/35
httpbin = { git = "https://github.com/psf/httpbin.git", rev = "1f6e0498" }
[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"
"Funding" = "https://github.com/sponsors/miketheman"
[tool.coverage.report]
include = ["*pytest_socket*", "tests*"]
[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"