bitpoint 1.0.0__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.
@@ -8,8 +8,6 @@ jobs:
8
8
  publish:
9
9
  runs-on: ubuntu-latest
10
10
  environment: pypi
11
- permissions:
12
- id-token: write
13
11
  steps:
14
12
  - uses: actions/checkout@v4
15
13
 
@@ -19,4 +17,6 @@ jobs:
19
17
  run: uv build
20
18
 
21
19
  - name: Publish to PyPI
22
- run: uv publish --trusted-publishing always
20
+ run: uv publish
21
+ env:
22
+ UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bitpoint
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: Create HTTP endpoints quickly using files, without going through a framework.
5
5
  Project-URL: Homepage, https://github.com/tanrax/bitpoint
6
6
  Project-URL: Repository, https://github.com/tanrax/bitpoint
@@ -5,4 +5,4 @@ per-endpoint environments (which only need `bitpoint.request` and
5
5
  `bitpoint.response`), so nothing here may import Flask.
6
6
  """
7
7
 
8
- __version__ = "1.0.0"
8
+ __version__ = "1.0.2"
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "bitpoint"
3
- version = "1.0.0"
3
+ version = "1.0.2"
4
4
  description = "Create HTTP endpoints quickly using files, without going through a framework."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -26,6 +26,9 @@ keywords = ["http", "endpoints", "file-based-routing", "microframework", "webhoo
26
26
  requires-python = ">=3.9"
27
27
  dependencies = ["flask>=3.0"]
28
28
 
29
+ [project.scripts]
30
+ bitpoint = "bitpoint.__main__:main"
31
+
29
32
  [project.urls]
30
33
  Homepage = "https://github.com/tanrax/bitpoint"
31
34
  Repository = "https://github.com/tanrax/bitpoint"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes