semparse 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.
- semparse-0.1.0/.gitignore +8 -0
- semparse-0.1.0/PKG-INFO +30 -0
- semparse-0.1.0/README.md +15 -0
- semparse-0.1.0/pyproject.toml +25 -0
- semparse-0.1.0/src/semparse/__init__.py +5 -0
- semparse-0.1.0/src/semparse/py.typed +0 -0
- semparse-0.1.0/uv.lock +7 -0
semparse-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: semparse
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Semparse Python package stub for PyPI name reservation.
|
|
5
|
+
Author: Semparse
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Typing :: Typed
|
|
13
|
+
Requires-Python: >=3.12
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# Semparse (Python)
|
|
17
|
+
|
|
18
|
+
This is a minimal Python package stub for `semparse` so we can publish to PyPI and reserve the package name.
|
|
19
|
+
|
|
20
|
+
## Build
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
uv run --with build python -m build
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Publish
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
uv publish --token "$PYPI_API_TOKEN"
|
|
30
|
+
```
|
semparse-0.1.0/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Semparse (Python)
|
|
2
|
+
|
|
3
|
+
This is a minimal Python package stub for `semparse` so we can publish to PyPI and reserve the package name.
|
|
4
|
+
|
|
5
|
+
## Build
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
uv run --with build python -m build
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Publish
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
uv publish --token "$PYPI_API_TOKEN"
|
|
15
|
+
```
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "semparse"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Semparse Python package stub for PyPI name reservation."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.12"
|
|
7
|
+
license = { text = "MIT" }
|
|
8
|
+
authors = [{ name = "Semparse" }]
|
|
9
|
+
classifiers = [
|
|
10
|
+
"Development Status :: 1 - Planning",
|
|
11
|
+
"Intended Audience :: Developers",
|
|
12
|
+
"Programming Language :: Python :: 3",
|
|
13
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
14
|
+
"Programming Language :: Python :: 3.12",
|
|
15
|
+
"Typing :: Typed"
|
|
16
|
+
]
|
|
17
|
+
dependencies = []
|
|
18
|
+
|
|
19
|
+
[build-system]
|
|
20
|
+
requires = ["hatchling>=1.27.0"]
|
|
21
|
+
build-backend = "hatchling.build"
|
|
22
|
+
|
|
23
|
+
[tool.hatch.build.targets.wheel]
|
|
24
|
+
packages = ["src/semparse"]
|
|
25
|
+
|
|
File without changes
|