-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (57 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (57 loc) · 1.61 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
[project]
name = "band-testing-python"
version = "0.1.4"
description = "Shared Python testing utilities for Band repositories - fixtures, factories, and fakes"
readme = "README.md"
license = "MIT"
authors = [{ name = "Band" }]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Testing",
]
dependencies = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
]
[project.optional-dependencies]
# For repos using band_rest client (integration tests)
rest = ["band-client-rest==0.0.9"]
# For repos using WebSocket testing
websocket = ["websockets>=12.0"]
# Full installation
full = ["band-testing-python[rest,websocket]"]
# Development
dev = [
"band-testing-python[full]",
"ruff>=0.1.0",
"pyrefly>=0.1.0",
"pre-commit>=3.0.0",
]
[project.entry-points.pytest11]
band_testing = "band_testing.fixtures"
[project.urls]
Repository = "https://github.com/band-ai/band-testing-python"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/band_testing"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.ruff.lint.isort]
known-first-party = ["band_testing"]