pgcarter 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.
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: pgcarter
3
+ Version: 0.0.1
4
+ Summary: PostgreSQL discovery, profiling, and query intelligence toolkit
5
+ License: MIT
6
+ Requires-Python: >=3.11
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: psycopg[binary]>=3.1
9
+ Provides-Extra: dev
10
+ Requires-Dist: pytest; extra == "dev"
11
+ Requires-Dist: ruff; extra == "dev"
12
+ Requires-Dist: mypy; extra == "dev"
13
+ Requires-Dist: build; extra == "dev"
14
+ Requires-Dist: twine; extra == "dev"
15
+
16
+ # pgcarter
17
+
18
+ PostgreSQL discovery, profiling, and query intelligence toolkit.
19
+
20
+ Version: 0.0.1
@@ -0,0 +1,5 @@
1
+ # pgcarter
2
+
3
+ PostgreSQL discovery, profiling, and query intelligence toolkit.
4
+
5
+ Version: 0.0.1
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"
@@ -0,0 +1,5 @@
1
+ from . import __version__
2
+
3
+
4
+ def main():
5
+ print(f"pgcarter development release {__version__}")
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: pgcarter
3
+ Version: 0.0.1
4
+ Summary: PostgreSQL discovery, profiling, and query intelligence toolkit
5
+ License: MIT
6
+ Requires-Python: >=3.11
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: psycopg[binary]>=3.1
9
+ Provides-Extra: dev
10
+ Requires-Dist: pytest; extra == "dev"
11
+ Requires-Dist: ruff; extra == "dev"
12
+ Requires-Dist: mypy; extra == "dev"
13
+ Requires-Dist: build; extra == "dev"
14
+ Requires-Dist: twine; extra == "dev"
15
+
16
+ # pgcarter
17
+
18
+ PostgreSQL discovery, profiling, and query intelligence toolkit.
19
+
20
+ Version: 0.0.1
@@ -0,0 +1,11 @@
1
+ README.md
2
+ pyproject.toml
3
+ pgcarter/__init__.py
4
+ pgcarter/cli.py
5
+ pgcarter.egg-info/PKG-INFO
6
+ pgcarter.egg-info/SOURCES.txt
7
+ pgcarter.egg-info/dependency_links.txt
8
+ pgcarter.egg-info/entry_points.txt
9
+ pgcarter.egg-info/requires.txt
10
+ pgcarter.egg-info/top_level.txt
11
+ tests/test_cli.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pgcarter = pgcarter.cli:main
@@ -0,0 +1,8 @@
1
+ psycopg[binary]>=3.1
2
+
3
+ [dev]
4
+ pytest
5
+ ruff
6
+ mypy
7
+ build
8
+ twine
@@ -0,0 +1 @@
1
+ pgcarter
@@ -0,0 +1,26 @@
1
+ [project]
2
+
3
+ name = "pgcarter"
4
+ version = "0.0.1"
5
+ description = "PostgreSQL discovery, profiling, and query intelligence toolkit"
6
+ readme = "README.md"
7
+ requires-python = ">=3.11"
8
+ license = { text = "MIT" }
9
+
10
+ dependencies = [
11
+ "psycopg[binary]>=3.1"
12
+ ]
13
+
14
+ [project.optional-dependencies]
15
+
16
+ dev = [
17
+ "pytest",
18
+ "ruff",
19
+ "mypy",
20
+ "build",
21
+ "twine"
22
+ ]
23
+
24
+ [project.scripts]
25
+
26
+ pgcarter = "pgcarter.cli:main"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,5 @@
1
+ from pgcarter.cli import main
2
+
3
+
4
+ def test_cli_runs():
5
+ assert callable(main)