fmtspec 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fmtspec-0.1.0/PKG-INFO +14 -0
- fmtspec-0.1.0/README.md +4 -0
- fmtspec-0.1.0/pyproject.toml +23 -0
- fmtspec-0.1.0/src/fmtspec/__init__.py +0 -0
- fmtspec-0.1.0/src/fmtspec/py.typed +0 -0
fmtspec-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: fmtspec
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A flexible binary format serialization library for Python
|
|
5
|
+
Author: Peter Gessler
|
|
6
|
+
Author-email: Peter Gessler <gesslerpd@users.noreply.github.com>
|
|
7
|
+
Requires-Dist: msgspec>=0.20.0
|
|
8
|
+
Requires-Python: >=3.12
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
# fmtspec
|
|
13
|
+
|
|
14
|
+
`fmtspec` is a flexible binary format serialization library for Python.
|
fmtspec-0.1.0/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "fmtspec"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "A flexible binary format serialization library for Python"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [
|
|
7
|
+
{ name = "Peter Gessler", email = "gesslerpd@users.noreply.github.com" }
|
|
8
|
+
]
|
|
9
|
+
requires-python = ">=3.12"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"msgspec>=0.20.0",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[build-system]
|
|
15
|
+
requires = ["uv-build>=0.9.26"]
|
|
16
|
+
build-backend = "uv_build"
|
|
17
|
+
|
|
18
|
+
[dependency-groups]
|
|
19
|
+
dev = [
|
|
20
|
+
"pytest>=9.0.2",
|
|
21
|
+
"pytest-cov>=7.0.0",
|
|
22
|
+
"ruff>=0.14.13",
|
|
23
|
+
]
|
|
File without changes
|
|
File without changes
|