starlex 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,8 @@
1
+ .venv/
2
+ __pycache__/
3
+ *.py[cod]
4
+ .mypy_cache/
5
+ .pytest_cache/
6
+ .ruff_cache/
7
+ dist/
8
+ build/
starlex-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: starlex
3
+ Version: 0.1.0
4
+ Summary: Starlex Python package stub for PyPI name reservation.
5
+ Author: Starlex
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
+ # Starlex (Python)
17
+
18
+ This is a minimal Python package stub for `starlex` 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
+ ```
@@ -0,0 +1,15 @@
1
+ # Starlex (Python)
2
+
3
+ This is a minimal Python package stub for `starlex` 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 = "starlex"
3
+ version = "0.1.0"
4
+ description = "Starlex Python package stub for PyPI name reservation."
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ license = { text = "MIT" }
8
+ authors = [{ name = "Starlex" }]
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/starlex"]
25
+
@@ -0,0 +1,5 @@
1
+ """Starlex Python package stub."""
2
+
3
+ __all__ = ["__version__"]
4
+
5
+ __version__ = "0.1.0"
File without changes
starlex-0.1.0/uv.lock ADDED
@@ -0,0 +1,7 @@
1
+ version = 1
2
+ requires-python = ">=3.12"
3
+
4
+ [[package]]
5
+ name = "starlex"
6
+ version = "0.1.0"
7
+ source = { editable = "." }