pgmini-migrate 0.1.0__py3-none-any.whl

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.
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: pgmini-migrate
3
+ Version: 0.1.0
4
+ Summary: A minimal PostgreSQL migration tool for Python
5
+ Author-email: Nguyen Vu Duy Luan <nvdluan@gmail.com>
6
+ License: Copyright (c) 2025 Nguyen Vu Duy Luan
7
+ Project-URL: Homepage, https://github.com/NVDLuan/pgmini-migrate
8
+ Project-URL: Issues, https://github.com/NVDLuan/pgmini-migrate/issues
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: psycopg[binary]>=3.1.8
13
+ Requires-Dist: dotenv<0.10.0,>=0.9.9
14
+ Dynamic: license-file
15
+
16
+ # pgmini-migrate
17
+
18
+ A minimal PostgreSQL migration tool using psycopg3.
19
+
20
+ ## Install
21
+ ```bash
22
+ pip install pgmini-migrate
@@ -0,0 +1,6 @@
1
+ pgmini_migrate-0.1.0.dist-info/licenses/LICENSE,sha256=n8ph1nmbOC4LqVLKRE-5SrUxzlv71A4saf-2_iNWR2Y,37
2
+ pgmini_migrate-0.1.0.dist-info/METADATA,sha256=WSE1F2hQk8NAT-l4K365L-r6tpCD4o1J3uG1-D9SGQ0,649
3
+ pgmini_migrate-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
4
+ pgmini_migrate-0.1.0.dist-info/entry_points.txt,sha256=Zy6EN7sJuzTPbMhyoFjri1OdQ2iX1HuPw4UcSi4G6OY,54
5
+ pgmini_migrate-0.1.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
6
+ pgmini_migrate-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pgmigrate = pgmini_migrate.cli:main
@@ -0,0 +1 @@
1
+ Copyright (c) 2025 Nguyen Vu Duy Luan