-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 1.98 KB
/
pyproject.toml
File metadata and controls
71 lines (64 loc) · 1.98 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cbltest"
dynamic = ["version"]
authors = [
{ name = "Jim Borden", email = "jim.borden@couchbase.com" }
]
description = "A client for consuming the Couchbase Lite functional testing REST API"
readme = "README.md"
# couchbase SDK only has wheels for < 3.14
requires-python = ">=3.10,<3.14"
license = {text ="Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Framework :: Pytest",
"Topic :: Software Development :: Testing",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Environment :: Console"
]
dependencies = [
"aiohttp==3.11.11",
"couchbase==4.3.4",
"cryptography==44.0.0",
"deepdiff==8.6.1",
"netifaces==0.11.0",
"opentelemetry-api==1.29.0",
"opentelemetry-exporter-otlp-proto-common==1.29.0",
"opentelemetry-exporter-otlp-proto-grpc==1.29.0",
"opentelemetry-proto==1.29.0",
"opentelemetry-sdk==1.29.0",
"opentelemetry-semantic-conventions==0.50b0",
"packaging==24.2",
"pydantic>=2.13.3",
"pyjson5==1.6.8",
"pytest==9.0.2",
"pytest-asyncio==1.3.0",
"requests==2.32.3",
"websocket-client==1.8.0",
]
[project.urls]
"Homepage" = "https://github.com/couchbaselabs/couchbase-lite-tests"
"Bug Tracker" = "https://github.com/couchbaselabs/couchbase-lite-tests/issues"
[project.entry-points.pytest11]
required_topology = "cbltest.plugins.required_topology"
cbse_filter = "cbltest.plugins.cbse_filter"
cblpytest_fixture = "cbltest.plugins.cblpytest_fixture"
greenboard_fixture = "cbltest.plugins.greenboard_fixture"
span_generation_fixture = "cbltest.plugins.span_generation_fixture"
[tool.hatch.version]
path = "src/cbltest/version.py"
[tool.hatch.build]
include = [
"src/cbltest"
]
[tool.hatch.build.targets.wheel]
packages = [
"src/cbltest"
]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "session"