pgmini-migrate 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.
@@ -0,0 +1 @@
1
+ Copyright (c) 2025 Nguyen Vu Duy Luan
@@ -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,7 @@
1
+ # pgmini-migrate
2
+
3
+ A minimal PostgreSQL migration tool using psycopg3.
4
+
5
+ ## Install
6
+ ```bash
7
+ pip install pgmini-migrate
@@ -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,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ pgmini_migrate.egg-info/PKG-INFO
6
+ pgmini_migrate.egg-info/SOURCES.txt
7
+ pgmini_migrate.egg-info/dependency_links.txt
8
+ pgmini_migrate.egg-info/entry_points.txt
9
+ pgmini_migrate.egg-info/requires.txt
10
+ pgmini_migrate.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pgmigrate = pgmini_migrate.cli:main
@@ -0,0 +1,2 @@
1
+ psycopg[binary]>=3.1.8
2
+ dotenv<0.10.0,>=0.9.9
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "pgmini-migrate"
7
+ version = "0.1.0"
8
+ description = "A minimal PostgreSQL migration tool for Python"
9
+ readme = "README.md"
10
+ license = { file = "LICENSE" }
11
+ authors = [
12
+ { name = "Nguyen Vu Duy Luan", email = "nvdluan@gmail.com" }
13
+ ]
14
+ dependencies = [
15
+ "psycopg[binary]>=3.1.8",
16
+ "dotenv (>=0.9.9,<0.10.0)"
17
+ ]
18
+ requires-python = ">=3.8"
19
+
20
+ [project.scripts]
21
+ pgmigrate = "pgmini_migrate.cli:main"
22
+
23
+ [project.urls]
24
+ Homepage = "https://github.com/NVDLuan/pgmini-migrate"
25
+ Issues = "https://github.com/NVDLuan/pgmini-migrate/issues"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,13 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="pgmini-migrate",
5
+ version="0.1.0",
6
+ packages=find_packages(),
7
+ install_requires=["psycopg2-binary", 'psycopg', 'python-dotenv'],
8
+ entry_points={
9
+ "console_scripts": [
10
+ "pgmigrate=pgmini_migrate.cli:main",
11
+ ],
12
+ },
13
+ )