uplid 1.1.1__tar.gz → 1.1.3__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.
- {uplid-1.1.1 → uplid-1.1.3}/PKG-INFO +8 -2
- {uplid-1.1.1 → uplid-1.1.3}/README.md +6 -0
- {uplid-1.1.1 → uplid-1.1.3}/pyproject.toml +3 -2
- {uplid-1.1.1 → uplid-1.1.3}/src/uplid/__init__.py +0 -0
- {uplid-1.1.1 → uplid-1.1.3}/src/uplid/py.typed +0 -0
- {uplid-1.1.1 → uplid-1.1.3}/src/uplid/sqlalchemy.py +0 -0
- {uplid-1.1.1 → uplid-1.1.3}/src/uplid/uplid.py +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: uplid
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.3
|
|
4
4
|
Summary: Universal Prefixed Literal IDs - type-safe, human-readable identifiers
|
|
5
|
-
Keywords: uuid,
|
|
5
|
+
Keywords: pydantic,fastapi,sqlalchemy,uuid,identifiers,stripe,prefixed-ids,type-safe
|
|
6
6
|
Author: ZVS
|
|
7
7
|
Author-email: ZVS <zvs@daswolf.dev>
|
|
8
8
|
License-Expression: MIT
|
|
@@ -45,6 +45,8 @@ Description-Content-Type: text/markdown
|
|
|
45
45
|
[](https://pypi.org/project/uplid/)
|
|
46
46
|
[](https://github.com/zvsdev/uplid)
|
|
47
47
|
|
|
48
|
+
[About](https://zvs.fyi/articles/uplid.html)
|
|
49
|
+
|
|
48
50
|
## Install
|
|
49
51
|
|
|
50
52
|
```bash
|
|
@@ -218,6 +220,10 @@ id: Mapped[UserId] = uplid_column(UserId, primary_key=True)
|
|
|
218
220
|
id: UserId = uplid_field(UserId, default_factory=factory(UserId), primary_key=True)
|
|
219
221
|
```
|
|
220
222
|
|
|
223
|
+
## Credits
|
|
224
|
+
|
|
225
|
+
Created by [ZVS](https://zvs.fyi)
|
|
226
|
+
|
|
221
227
|
## License
|
|
222
228
|
|
|
223
229
|
MIT
|
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
[](https://pypi.org/project/uplid/)
|
|
25
25
|
[](https://github.com/zvsdev/uplid)
|
|
26
26
|
|
|
27
|
+
[About](https://zvs.fyi/articles/uplid.html)
|
|
28
|
+
|
|
27
29
|
## Install
|
|
28
30
|
|
|
29
31
|
```bash
|
|
@@ -197,6 +199,10 @@ id: Mapped[UserId] = uplid_column(UserId, primary_key=True)
|
|
|
197
199
|
id: UserId = uplid_field(UserId, default_factory=factory(UserId), primary_key=True)
|
|
198
200
|
```
|
|
199
201
|
|
|
202
|
+
## Credits
|
|
203
|
+
|
|
204
|
+
Created by [ZVS](https://zvs.fyi)
|
|
205
|
+
|
|
200
206
|
## License
|
|
201
207
|
|
|
202
208
|
MIT
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "uplid"
|
|
3
|
-
version = "1.1.
|
|
3
|
+
version = "1.1.3"
|
|
4
4
|
description = "Universal Prefixed Literal IDs - type-safe, human-readable identifiers"
|
|
5
5
|
authors = [{ name = "ZVS", email = "zvs@daswolf.dev" }]
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
license = "MIT"
|
|
8
8
|
requires-python = ">=3.14"
|
|
9
|
-
keywords = ["
|
|
9
|
+
keywords = ["pydantic", "fastapi", "sqlalchemy", "uuid", "identifiers", "stripe",
|
|
10
|
+
"prefixed-ids", "type-safe"]
|
|
10
11
|
dependencies = ["pydantic>=2.10"]
|
|
11
12
|
classifiers = [
|
|
12
13
|
"Development Status :: 5 - Production/Stable",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|