-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 1.2 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
[project]
name = "msgpack-streams"
version = "1.1.0"
description = "Fast stream based implementation of msgpack in pure Python"
readme = "README.md"
classifiers = [
"Operating System :: OS Independent",
"Typing :: Typed",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
keywords = [
"msgpack",
"streams",
"serialization",
"streaming",
"datetime",
"ext",
"fast",
"minimal",
]
authors = [
{ name = "Peter Gessler", email = "gesslerpd@users.noreply.github.com" },
]
requires-python = ">=3.10"
dependencies = []
[project.urls]
Homepage = "https://github.com/gesslerpd/msgpack-stream"
Repository = "https://github.com/gesslerpd/msgpack-stream"
Documentation = "https://github.com/gesslerpd/msgpack-stream/blob/main/README.md"
Issues = "https://github.com/gesslerpd/msgpack-stream/issues"
Changelog = "https://github.com/gesslerpd/msgpack-stream/releases"
[build-system]
requires = ["uv-build>=0.10,<0.11"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"msgpack>=1.1.1",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"ruff>=0.12.8",
]