pyright-to-gitlab 1.0.1__tar.gz → 1.0.2__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.
@@ -4,11 +4,11 @@ on: [push]
4
4
 
5
5
  jobs:
6
6
  testing:
7
- name: Testing
7
+ name: 🧪
8
8
  uses: ./.github/workflows/testing.yml
9
9
 
10
10
  build:
11
- name: Build package 📦
11
+ name: Build 🐍📦
12
12
  runs-on: ubuntu-latest
13
13
  steps:
14
14
  - uses: actions/checkout@v4
@@ -28,7 +28,7 @@ jobs:
28
28
 
29
29
  publish-to-pypi:
30
30
  name: >-
31
- Publish Python 🐍 distribution 📦 to PyPI
31
+ 🐍📦 to PyPI
32
32
  needs: [testing]
33
33
  if: success() && startsWith(github.ref, 'refs/tags/v')
34
34
  runs-on: ubuntu-latest
@@ -49,8 +49,7 @@ jobs:
49
49
 
50
50
  github-release:
51
51
  name: >-
52
- Sign the Python 🐍 distribution 📦 with Sigstore
53
- and upload them to GitHub Release
52
+ Sign 🐍📦 with Sigstore and upload them to GitHub Release
54
53
  needs: [testing]
55
54
  if: success() && startsWith(github.ref, 'refs/tags/v')
56
55
  runs-on: ubuntu-latest
@@ -7,5 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Upcoming]
9
9
 
10
- ## [1.0.0] - 2025-06-02
11
- Initial release.
10
+ ## [1.0.2] - 2025-06-02
11
+ ### Added
12
+ - URLs and topics to pyproject.toml for PyPI metadata.
13
+ - Advertise the no-dependency in the README.md.
14
+
15
+ ## [1.0.1] - 2025-06-02
16
+ Initial release.
17
+
@@ -0,0 +1,59 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyright-to-gitlab
3
+ Version: 1.0.2
4
+ Summary: Convert Pyright JSON output to GitLab CI/CD format
5
+ Project-URL: homepage, https://github.com/schollm/pyright-to-gitlab/
6
+ Project-URL: repository, https://github.com/schollm/pyright-to-gitlab/
7
+ Project-URL: pypi, https://pypi.org/project/pyright-to-gitlab
8
+ Author: Micha Schöll
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: ci/cd,gitlab,pyright
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3.7
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Programming Language :: Python :: 3.14
23
+ Classifier: Topic :: Software Development
24
+ Classifier: Topic :: Software Development :: Testing
25
+ Classifier: Topic :: Utilities
26
+ Classifier: Typing :: Typed
27
+ Requires-Python: >=3.6
28
+ Description-Content-Type: text/markdown
29
+
30
+ # pyright to gitlab
31
+ Simple zero-dependency Python script to convert a pyright --outputjson to a gitlab
32
+ code-quality report.
33
+
34
+ ## Usage
35
+ Run the script with the path to the pyright output file:
36
+ ```shell
37
+ $ pip install pyright-to-gitlab
38
+ $ pyright . --outputjson | pyright-to-gitlab > code-quality.json
39
+ ```
40
+
41
+ Alternatively, the module can be called:
42
+ ```shell
43
+ $ pip install pyright-to-gitlab
44
+ $ pyright . --outputjson | python -m pyright_to_gitlab > code-quality.json
45
+ ```
46
+ ### Custom path prefix
47
+ The `--prefix` option adds a custom prefix to the file paths in the output. This is
48
+ useful if the paths in the pyright output are not relative to the root of the repository.
49
+
50
+
51
+ ```shell
52
+ $ pyright . --outputjson | pyright-to-gitlab --prefix my-app/ > code-quality.json
53
+ ```
54
+
55
+ ## Testing
56
+ To run the tests, execute
57
+ ```shell
58
+ $ uv run pytest tests/
59
+ ```
@@ -1,5 +1,6 @@
1
1
  # pyright to gitlab
2
- Simple Python script to convert a pyright --outputjson to a gitlab code-quality report.
2
+ Simple zero-dependency Python script to convert a pyright --outputjson to a gitlab
3
+ code-quality report.
3
4
 
4
5
  ## Usage
5
6
  Run the script with the path to the pyright output file:
@@ -1,13 +1,36 @@
1
1
  [project]
2
2
  name = "pyright-to-gitlab"
3
- version = "1.0.1"
3
+ version = "1.0.2"
4
4
  description = "Convert Pyright JSON output to GitLab CI/CD format"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.6"
7
- authors = [
8
- { name = "Micha Schöll", email = "" }
7
+ authors = [{ name = "Micha Schöll", email = "" }]
8
+ license = "MIT"
9
+ license-files = ["LICENSE"]
10
+ keywords = [ "ci/cd", "pyright", 'gitlab' ]
11
+ classifiers = [
12
+ "Development Status :: 5 - Production/Stable",
13
+ "Intended Audience :: Developers",
14
+ "License :: OSI Approved :: MIT License",
15
+ "Programming Language :: Python :: 3.7",
16
+ "Programming Language :: Python :: 3.8",
17
+ "Programming Language :: Python :: 3.9",
18
+ "Programming Language :: Python :: 3.10",
19
+ "Programming Language :: Python :: 3.11",
20
+ "Programming Language :: Python :: 3.12",
21
+ "Programming Language :: Python :: 3.13",
22
+ "Programming Language :: Python :: 3.14",
23
+ "Topic :: Software Development :: Testing",
24
+ "Topic :: Software Development",
25
+ "Topic :: Utilities",
26
+ "Typing :: Typed",
9
27
  ]
10
- license = { file = "LICENSE" }
28
+
29
+ [project.urls]
30
+ homepage = "https://github.com/schollm/pyright-to-gitlab/"
31
+ repository = "https://github.com/schollm/pyright-to-gitlab/"
32
+ pypi = "https://pypi.org/project/pyright-to-gitlab"
33
+
11
34
  [project.scripts]
12
35
  pyrigh-to-gitlab = 'pyright_to_gitlab:main'
13
36
 
@@ -601,7 +601,7 @@ wheels = [
601
601
 
602
602
  [[package]]
603
603
  name = "pyright-to-gitlab"
604
- version = "1.0.1"
604
+ version = "1.0.2"
605
605
  source = { editable = "." }
606
606
 
607
607
  [package.dev-dependencies]
@@ -1,59 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: pyright-to-gitlab
3
- Version: 1.0.1
4
- Summary: Convert Pyright JSON output to GitLab CI/CD format
5
- Author: Micha Schöll
6
- License: MIT License
7
-
8
- Copyright (c) 2025 Micha Schöll
9
-
10
- Permission is hereby granted, free of charge, to any person obtaining a copy
11
- of this software and associated documentation files (the "Software"), to deal
12
- in the Software without restriction, including without limitation the rights
13
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- copies of the Software, and to permit persons to whom the Software is
15
- furnished to do so, subject to the following conditions:
16
-
17
- The above copyright notice and this permission notice shall be included in all
18
- copies or substantial portions of the Software.
19
-
20
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
- SOFTWARE.
27
- License-File: LICENSE
28
- Requires-Python: >=3.6
29
- Description-Content-Type: text/markdown
30
-
31
- # pyright to gitlab
32
- Simple Python script to convert a pyright --outputjson to a gitlab code-quality report.
33
-
34
- ## Usage
35
- Run the script with the path to the pyright output file:
36
- ```shell
37
- $ pip install pyright-to-gitlab
38
- $ pyright . --outputjson | pyright-to-gitlab > code-quality.json
39
- ```
40
-
41
- Alternatively, the module can be called:
42
- ```shell
43
- $ pip install pyright-to-gitlab
44
- $ pyright . --outputjson | python -m pyright_to_gitlab > code-quality.json
45
- ```
46
- ### Custom path prefix
47
- The `--prefix` option adds a custom prefix to the file paths in the output. This is
48
- useful if the paths in the pyright output are not relative to the root of the repository.
49
-
50
-
51
- ```shell
52
- $ pyright . --outputjson | pyright-to-gitlab --prefix my-app/ > code-quality.json
53
- ```
54
-
55
- ## Testing
56
- To run the tests, execute
57
- ```shell
58
- $ uv run pytest tests/
59
- ```