-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 878 Bytes
/
pyproject.toml
File metadata and controls
31 lines (26 loc) · 878 Bytes
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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [{name = "Xu Chaoqian", email = "chaoranxu@gmail.com"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["protobuf == 5.28.0"]
description = "The maxwell protocol implementation for python."
license = {file = "LICENSE"}
name = "maxwell-protocol"
readme = "README.md"
requires-python = ">=3.7"
version = "0.9.2"
[project.optional-dependencies]
test = ["pytest >= 8.3.2", "pytest-cov >= 5.0.0"]
[project.urls]
changelog = "https://github.com/maxwell-dev/maxwell-protocol-python/CHANGELOG.md"
repository = "https://github.com/maxwell-dev/maxwell-protocol-python"
[tool.hatch.build.targets.wheel]
packages = ["maxwell"]
[tool.hatch.metadata]
allow-direct-references = true