-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (53 loc) · 1.25 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (53 loc) · 1.25 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
[project]
name = "fmtspec"
version = "0.7.1"
description = "A fast and flexible binary format serialization library for Python"
readme = "README.md"
classifiers = [
"Operating System :: OS Independent",
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Topic :: System :: Networking",
"Topic :: File Formats",
]
keywords = [
"serialization",
"deserialization",
"encoding",
"decoding",
"binary",
"formats",
"protocols",
"packets",
"parsing",
"msgpack",
"msgspec",
"asn1",
"dataclasses",
"inspection",
"stream",
"streaming",
]
authors = [
{ name = "Peter Gessler", email = "gesslerpd@users.noreply.github.com" }
]
requires-python = ">=3.12"
dependencies = [
"msgspec>=0.20.0",
]
[project.urls]
Homepage = "https://github.com/gesslerpd/fmtspec"
Repository = "https://github.com/gesslerpd/fmtspec"
Documentation = "https://github.com/gesslerpd/fmtspec/blob/main/README.md"
Issues = "https://github.com/gesslerpd/fmtspec/issues"
Changelog = "https://github.com/gesslerpd/fmtspec/releases"
[build-system]
requires = ["uv-build>=0.11,<0.12"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"msgpack>=1.1.2",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.14.13",
]