polygres-cli 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,40 @@
1
+ name: ci
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
+
9
+ permissions:
10
+ contents: read
11
+
12
+ jobs:
13
+ test:
14
+ runs-on: ubuntu-latest
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
19
+
20
+ steps:
21
+ - name: Check out repository
22
+ uses: actions/checkout@v4
23
+
24
+ - name: Set up Python
25
+ uses: actions/setup-python@v5
26
+ with:
27
+ python-version: ${{ matrix.python-version }}
28
+ cache: pip
29
+
30
+ - name: Install package and development dependencies
31
+ run: python -m pip install -e ".[dev]"
32
+
33
+ - name: Run tests
34
+ run: pytest
35
+
36
+ - name: Run lint
37
+ run: ruff check .
38
+
39
+ - name: Build package
40
+ run: python -m build
@@ -0,0 +1,99 @@
1
+ name: Publish Python CLI
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ publish_target:
7
+ description: Package index to publish to
8
+ required: true
9
+ type: choice
10
+ options:
11
+ - testpypi
12
+ - none
13
+ default: testpypi
14
+ push:
15
+ tags:
16
+ - "python-cli-v*"
17
+
18
+ permissions:
19
+ contents: read
20
+
21
+ jobs:
22
+ build:
23
+ name: Validate and build CLI
24
+ runs-on: ubuntu-latest
25
+ steps:
26
+ - name: Check out repository
27
+ uses: actions/checkout@v4
28
+ with:
29
+ persist-credentials: false
30
+
31
+ - name: Set up Python
32
+ uses: actions/setup-python@v5
33
+ with:
34
+ python-version: "3.11"
35
+ cache: pip
36
+
37
+ - name: Install package and release dependencies
38
+ run: python -m pip install -e ".[dev]" twine
39
+
40
+ - name: Run lint
41
+ run: python -m ruff check .
42
+
43
+ - name: Run tests
44
+ run: python -m pytest
45
+
46
+ - name: Build CLI distribution
47
+ run: |
48
+ rm -rf dist
49
+ python -m build
50
+ python -m twine check dist/*
51
+
52
+ - name: Upload CLI distributions
53
+ uses: actions/upload-artifact@v4
54
+ with:
55
+ name: python-cli-dist
56
+ path: dist/*
57
+ if-no-files-found: error
58
+
59
+ publish-testpypi:
60
+ name: Publish CLI to TestPyPI
61
+ needs: build
62
+ if: github.event_name == 'workflow_dispatch' && inputs.publish_target == 'testpypi'
63
+ runs-on: ubuntu-latest
64
+ environment:
65
+ name: testpypi
66
+ url: https://test.pypi.org/project/polygres-cli/
67
+ permissions:
68
+ id-token: write
69
+ steps:
70
+ - name: Download CLI distributions
71
+ uses: actions/download-artifact@v4
72
+ with:
73
+ name: python-cli-dist
74
+ path: dist/
75
+
76
+ - name: Publish to TestPyPI
77
+ uses: pypa/gh-action-pypi-publish@release/v1
78
+ with:
79
+ repository-url: https://test.pypi.org/legacy/
80
+
81
+ publish-pypi:
82
+ name: Publish CLI to PyPI
83
+ needs: build
84
+ if: startsWith(github.ref, 'refs/tags/python-cli-v')
85
+ runs-on: ubuntu-latest
86
+ environment:
87
+ name: pypi
88
+ url: https://pypi.org/project/polygres-cli/
89
+ permissions:
90
+ id-token: write
91
+ steps:
92
+ - name: Download CLI distributions
93
+ uses: actions/download-artifact@v4
94
+ with:
95
+ name: python-cli-dist
96
+ path: dist/
97
+
98
+ - name: Publish to PyPI
99
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,23 @@
1
+ # Environments
2
+ .env
3
+ .venv
4
+ env/
5
+ venv/
6
+
7
+ # Python and package output
8
+ __pycache__/
9
+ *.py[cod]
10
+ *.egg-info/
11
+ build/
12
+ dist/
13
+
14
+ # Test and tooling caches
15
+ .pytest_cache/
16
+ .ruff_cache/
17
+ .mypy_cache/
18
+
19
+ # Editor and operating system files
20
+ .DS_Store
21
+ .idea/
22
+ .vscode/
23
+ *.swp
@@ -0,0 +1,31 @@
1
+ # Contributing
2
+
3
+ ## Development setup
4
+
5
+ Use Python 3.10 or newer.
6
+
7
+ ```bash
8
+ python3 -m venv .venv
9
+ . .venv/bin/activate
10
+ pip install -e ".[dev]"
11
+ ```
12
+
13
+ ## Checks
14
+
15
+ ```bash
16
+ pytest
17
+ ruff check .
18
+ python -m build
19
+ ```
20
+
21
+ ## Publishing
22
+
23
+ Publishing uses GitHub Actions Trusted Publishing. Validate first through
24
+ TestPyPI, then publish a matching `python-cli-vX.Y.Z` tag from the public CLI
25
+ repository. Do not add PyPI API tokens to GitHub secrets.
26
+
27
+ ## Scope
28
+
29
+ This repository contains the public command-line client. Keep control-plane
30
+ authentication, configuration, command behavior, and CLI documentation here.
31
+ Runtime API retrieval models and library APIs belong in `polygres-sdk`.
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,95 @@
1
+ Metadata-Version: 2.4
2
+ Name: polygres-cli
3
+ Version: 0.1.0
4
+ Summary: Command-line interface for Polygres
5
+ Project-URL: Homepage, https://polygres.com
6
+ Project-URL: Documentation, https://docs.evokoa.com/polygres
7
+ Project-URL: Repository, https://github.com/Evokoa/polygres-cli
8
+ Project-URL: Issues, https://github.com/Evokoa/polygres-cli/issues
9
+ Project-URL: Support, https://polygres.com
10
+ Author: Polygres
11
+ Maintainer-email: Polygres <support@evokoa.com>
12
+ License: Apache-2.0
13
+ License-File: LICENSE
14
+ Keywords: cli,polygres,postgres,postgresql
15
+ Classifier: Development Status :: 3 - Alpha
16
+ Classifier: Environment :: Console
17
+ Classifier: Intended Audience :: Developers
18
+ Classifier: License :: OSI Approved :: Apache Software License
19
+ Classifier: Operating System :: OS Independent
20
+ Classifier: Programming Language :: Python :: 3
21
+ Classifier: Programming Language :: Python :: 3 :: Only
22
+ Classifier: Programming Language :: Python :: 3.10
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: 3.14
27
+ Requires-Python: >=3.10
28
+ Requires-Dist: httpx>=0.28.1
29
+ Provides-Extra: dev
30
+ Requires-Dist: build>=1.2.2; extra == 'dev'
31
+ Requires-Dist: hatchling>=1.26.3; extra == 'dev'
32
+ Requires-Dist: pytest>=8.3.4; extra == 'dev'
33
+ Requires-Dist: respx>=0.21.1; extra == 'dev'
34
+ Requires-Dist: ruff>=0.8.4; extra == 'dev'
35
+ Description-Content-Type: text/markdown
36
+
37
+ # Polygres CLI
38
+
39
+ The Polygres CLI manages Polygres projects from the terminal. It authenticates
40
+ with the control plane and supports project setup, imports, migrations, and
41
+ retrieval configuration. It does not expose database passwords.
42
+
43
+ ## Install
44
+
45
+ ```bash
46
+ pip install polygres-cli
47
+ ```
48
+
49
+ For an isolated global installation:
50
+
51
+ ```bash
52
+ pipx install polygres-cli
53
+ ```
54
+
55
+ The command remains `polygres`:
56
+
57
+ ```bash
58
+ polygres login
59
+ polygres whoami
60
+ polygres projects list
61
+ polygres projects use <project-id-or-exact-name>
62
+ polygres env
63
+ polygres ready
64
+ ```
65
+
66
+ `polygres login` opens the Polygres dashboard for approval and prints a URL for
67
+ headless terminals. Credentials are stored at
68
+ `~/.config/polygres/config.json` with owner-only permissions on POSIX systems.
69
+ Run `polygres logout` to revoke the refresh token and remove local credentials.
70
+
71
+ Common project operations:
72
+
73
+ ```bash
74
+ polygres import csv ./documents.csv --table documents --wait
75
+ polygres migrations apply --file ./001_create_documents.sql
76
+ polygres graph discover --json > graph.json
77
+ polygres graph config apply --file graph.json
78
+ polygres vector configs list
79
+ polygres text configs list
80
+ ```
81
+
82
+ Run `polygres --help` for the full command reference. Exit codes distinguish
83
+ validation (`2`), authentication (`3`), permission (`4`), not found (`5`),
84
+ conflict (`6`), rate limiting (`7`), remote availability (`8`), and missing
85
+ local tools such as `psql` (`9`).
86
+
87
+ ## Relationship to the Python SDK
88
+
89
+ The CLI is distributed separately from the Python SDK. Install `polygres-sdk` when
90
+ your application needs Runtime API retrieval methods, and install
91
+ `polygres-cli` when you need the terminal command. The CLI has its own
92
+ control-plane client and does not require the SDK.
93
+
94
+ Users of the former combined `polygres` package should install `polygres-cli`
95
+ and `polygres-sdk` separately.
@@ -0,0 +1,59 @@
1
+ # Polygres CLI
2
+
3
+ The Polygres CLI manages Polygres projects from the terminal. It authenticates
4
+ with the control plane and supports project setup, imports, migrations, and
5
+ retrieval configuration. It does not expose database passwords.
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ pip install polygres-cli
11
+ ```
12
+
13
+ For an isolated global installation:
14
+
15
+ ```bash
16
+ pipx install polygres-cli
17
+ ```
18
+
19
+ The command remains `polygres`:
20
+
21
+ ```bash
22
+ polygres login
23
+ polygres whoami
24
+ polygres projects list
25
+ polygres projects use <project-id-or-exact-name>
26
+ polygres env
27
+ polygres ready
28
+ ```
29
+
30
+ `polygres login` opens the Polygres dashboard for approval and prints a URL for
31
+ headless terminals. Credentials are stored at
32
+ `~/.config/polygres/config.json` with owner-only permissions on POSIX systems.
33
+ Run `polygres logout` to revoke the refresh token and remove local credentials.
34
+
35
+ Common project operations:
36
+
37
+ ```bash
38
+ polygres import csv ./documents.csv --table documents --wait
39
+ polygres migrations apply --file ./001_create_documents.sql
40
+ polygres graph discover --json > graph.json
41
+ polygres graph config apply --file graph.json
42
+ polygres vector configs list
43
+ polygres text configs list
44
+ ```
45
+
46
+ Run `polygres --help` for the full command reference. Exit codes distinguish
47
+ validation (`2`), authentication (`3`), permission (`4`), not found (`5`),
48
+ conflict (`6`), rate limiting (`7`), remote availability (`8`), and missing
49
+ local tools such as `psql` (`9`).
50
+
51
+ ## Relationship to the Python SDK
52
+
53
+ The CLI is distributed separately from the Python SDK. Install `polygres-sdk` when
54
+ your application needs Runtime API retrieval methods, and install
55
+ `polygres-cli` when you need the terminal command. The CLI has its own
56
+ control-plane client and does not require the SDK.
57
+
58
+ Users of the former combined `polygres` package should install `polygres-cli`
59
+ and `polygres-sdk` separately.
@@ -0,0 +1,12 @@
1
+ # Security Policy
2
+
3
+ ## Reporting a vulnerability
4
+
5
+ Report suspected vulnerabilities privately by emailing support@evokoa.com.
6
+ Include the affected CLI version, a clear description, reproduction steps, and
7
+ known impact. Do not open a public issue for a security vulnerability.
8
+
9
+ ## Supported versions
10
+
11
+ Security fixes target the latest released Polygres CLI version. The CLI is in
12
+ alpha, so users should upgrade promptly when a security release is published.
@@ -0,0 +1,69 @@
1
+ [project]
2
+ name = "polygres-cli"
3
+ version = "0.1.0"
4
+ description = "Command-line interface for Polygres"
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ license = { text = "Apache-2.0" }
8
+ authors = [
9
+ { name = "Polygres" }
10
+ ]
11
+ maintainers = [
12
+ { name = "Polygres", email = "support@evokoa.com" }
13
+ ]
14
+ keywords = ["polygres", "postgres", "postgresql", "cli"]
15
+ classifiers = [
16
+ "Development Status :: 3 - Alpha",
17
+ "Environment :: Console",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: Apache Software License",
20
+ "Operating System :: OS Independent",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3 :: Only",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
25
+ "Programming Language :: Python :: 3.12",
26
+ "Programming Language :: Python :: 3.13",
27
+ "Programming Language :: Python :: 3.14"
28
+ ]
29
+ dependencies = ["httpx>=0.28.1"]
30
+
31
+ [project.scripts]
32
+ polygres = "polygres_cli.cli:main"
33
+
34
+ [project.urls]
35
+ Homepage = "https://polygres.com"
36
+ Documentation = "https://docs.evokoa.com/polygres"
37
+ Repository = "https://github.com/Evokoa/polygres-cli"
38
+ Issues = "https://github.com/Evokoa/polygres-cli/issues"
39
+ Support = "https://polygres.com"
40
+
41
+ [project.optional-dependencies]
42
+ dev = [
43
+ "build>=1.2.2",
44
+ "hatchling>=1.26.3",
45
+ "pytest>=8.3.4",
46
+ "respx>=0.21.1",
47
+ "ruff>=0.8.4"
48
+ ]
49
+
50
+ [build-system]
51
+ requires = ["hatchling>=1.26.3"]
52
+ build-backend = "hatchling.build"
53
+
54
+ [tool.hatch.build.targets.wheel]
55
+ packages = ["src/polygres_cli"]
56
+
57
+ [tool.pytest.ini_options]
58
+ addopts = "-q"
59
+ testpaths = ["tests"]
60
+ markers = [
61
+ "heavy: opt-in tests that require an installed wheel or live staging services",
62
+ ]
63
+
64
+ [tool.ruff]
65
+ line-length = 100
66
+ target-version = "py310"
67
+
68
+ [tool.ruff.lint]
69
+ select = ["E", "F", "I", "UP", "B"]
@@ -0,0 +1 @@
1
+ """Polygres command-line client package."""