-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.27 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [{name = "Xu Chaoqian", email = "[email protected]"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"websockets >= 12.0",
"aiohttp >= 3.9.5",
"maxwell-protocol >= 0.8.0",
"maxwell-utils >= 0.7.1",
]
description = "The maxwell client implementation for python."
license = {file = "LICENSE"}
name = "maxwell-client"
readme = "README.md"
requires-python = ">=3.7"
version = "0.11.0"
[project.optional-dependencies]
test = ["pytest >= 8.1.1", "pytest-asyncio >= 0.23.6", "pytest-cov >= 4.1.0"]
[project.urls]
changelog = "https://github.com/maxwell-dev/maxwell-client-python/CHANGELOG.md"
repository = "https://github.com/maxwell-dev/maxwell-client-python"
[tool.pytest.ini_options]
log_cli = true
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
log_cli_format = "[%(levelname)8s] %(asctime)s (%(filename)s:%(lineno)s) %(message)s"
log_cli_level = "DEBUG"
[tool.hatch.build.targets.wheel]
packages = ["maxwell"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.setuptools.packages.find]
where = [
"maxwell",
] # list of folders that contain the packages (["."] by default)