pgmig 0.0.1__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.
pgmig-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Yossi Rozantsev
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
pgmig-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.3
2
+ Name: pgmig
3
+ Version: 0.0.1
4
+ Summary: Generate migrations between Postgres databases
5
+ License: MIT
6
+ Keywords: postgres,schema,diff,migration
7
+ Author: Yossi Rozantsev
8
+ Requires-Python: >=3.9,<4.0
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Topic :: Software Development :: Libraries
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Project-URL: Documentation, https://github.com/Apakottur/pgmig
22
+ Project-URL: Homepage, https://github.com/Apakottur/pgmig
23
+ Project-URL: Repository, https://github.com/Apakottur/pgmig
24
+ Description-Content-Type: text/markdown
25
+
26
+ # pgmig
27
+ Generate migrations between Postgres databases
28
+
pgmig-0.0.1/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # pgmig
2
+ Generate migrations between Postgres databases
File without changes
@@ -0,0 +1,99 @@
1
+ # See: https://mypy.readthedocs.io/en/stable/config_file.html
2
+
3
+ [tool.mypy]
4
+ ####################
5
+ # Import discovery #
6
+ ####################
7
+ # Suppresses error messages about imports that cannot be resolved.
8
+ # This can be enabled per-module.
9
+ ignore_missing_imports = false
10
+
11
+ # See https://mypy.readthedocs.io/en/latest/running_mypy.html#following-imports
12
+ follow_imports = "normal"
13
+ follow_imports_for_stubs = true
14
+
15
+ ##########################
16
+ # Platform configuration #
17
+ ##########################
18
+ ###########################
19
+ # Disallow dynamic typing #
20
+ ###########################
21
+ disallow_any_unimported = true
22
+ disallow_any_expr = false
23
+ disallow_any_decorated = false
24
+ disallow_any_explicit = false
25
+ disallow_any_generics = true
26
+ disallow_subclassing_any = true
27
+ #################################
28
+ # Untyped definitions and calls #
29
+ #################################
30
+ disallow_untyped_calls = true
31
+ disallow_untyped_defs = true
32
+ disallow_incomplete_defs = true
33
+ check_untyped_defs = true
34
+ disallow_untyped_decorators = true
35
+ ##############################
36
+ # None and Optional handling #
37
+ ##############################
38
+ implicit_optional = false
39
+ strict_optional = true
40
+ ########################
41
+ # Configuring warnings #
42
+ ########################
43
+ warn_redundant_casts = true
44
+ warn_unused_ignores = true
45
+ warn_no_return = true
46
+ warn_return_any = true
47
+ warn_unreachable = true
48
+ ######################
49
+ # Suppressing errors #
50
+ ######################
51
+ ignore_errors = false
52
+ ##################################
53
+ # Miscellaneous strictness flags #
54
+ ##################################
55
+ allow_untyped_globals = false
56
+ allow_redefinition = false
57
+ local_partial_types = false
58
+ # disable_error_code=
59
+ # Optional error codes: https://mypy.readthedocs.io/en/stable/error_code_list2.html
60
+ enable_error_code = [
61
+ "redundant-self",
62
+ "redundant-expr",
63
+ "possibly-undefined",
64
+ "truthy-bool",
65
+ "truthy-iterable",
66
+ "ignore-without-code",
67
+ "unused-awaitable",
68
+ "explicit-override",
69
+ ]
70
+ implicit_reexport = false
71
+ strict_concatenate = true
72
+ strict_equality = true
73
+ strict = true
74
+ ##############################
75
+ # Configuring error messages #
76
+ ##############################
77
+ show_error_context = false
78
+ show_column_numbers = true
79
+ hide_error_codes = false
80
+ # pretty=
81
+ color_output = true
82
+ error_summary = true
83
+ show_absolute_path = false
84
+ ####################
85
+ # Incremental mode #
86
+ ####################
87
+ incremental = true
88
+ ####################
89
+ # Advanced options #
90
+ ####################
91
+ warn_incomplete_stub = true
92
+ #####################
93
+ # Report generation #
94
+ #####################
95
+ #################
96
+ # Miscellaneous #
97
+ #################
98
+ warn_unused_configs = true
99
+ # verbosity=
@@ -0,0 +1 @@
1
+ # Marker file for PEP 561.
@@ -0,0 +1,41 @@
1
+ [build-system]
2
+ requires = ["poetry==2.1.4"]
3
+ build-backend = "poetry.masonry.api"
4
+
5
+ [tool.poetry]
6
+ name = "pgmig"
7
+ packages = [{include = "pgmig"}]
8
+ version = "0.0.1"
9
+ description = "Generate migrations between Postgres databases"
10
+ authors = ["Yossi Rozantsev"]
11
+ license = "MIT"
12
+ readme = "README.md"
13
+ keywords = ["postgres", "schema", "diff", "migration"]
14
+ homepage = "https://github.com/Apakottur/pgmig"
15
+ repository = "https://github.com/Apakottur/pgmig"
16
+ documentation = "https://github.com/Apakottur/pgmig"
17
+ classifiers = [
18
+ "Development Status :: 5 - Production/Stable",
19
+ "Intended Audience :: Developers",
20
+ "Topic :: Software Development :: Libraries",
21
+ "Topic :: Software Development :: Libraries :: Python Modules",
22
+ "License :: OSI Approved :: MIT License",
23
+ "Operating System :: OS Independent",
24
+ ]
25
+ include = ["pgmig/py.typed"]
26
+
27
+ [tool.poetry.dependencies]
28
+ python = "^3.9"
29
+
30
+ [tool.poetry.extras]
31
+
32
+ [tool.poetry.group.dev.dependencies]
33
+ mypy = "1.17.1"
34
+ pre-commit = "4.3.0"
35
+ pytest = "8.4.1"
36
+ pytest-cov = "6.2.1"
37
+ pytest-mock = "3.14.1"
38
+
39
+ [tool.poetry.scripts]
40
+
41
+ [tool.poetry.urls]