stxt 0.0.1__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.
stxt-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: stxt
3
+ Version: 0.0.1
4
+ Summary: Official STXT library for Python (placeholder)
5
+ Author-email: Joan Costa <tu-email@ejemplo.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://stxt.dev
8
+ Project-URL: Source, https://github.com/mombiela/stxt
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+
12
+ # stxt
13
+
14
+ Minimal Python package for the STXT language.
15
+
16
+ This first release is a placeholder to reserve the `stxt` name on PyPI.
17
+ The API will evolve to provide access to the official STXT parser and tools.
stxt-0.0.1/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # stxt
2
+
3
+ Minimal Python package for the STXT language.
4
+
5
+ This first release is a placeholder to reserve the `stxt` name on PyPI.
6
+ The API will evolve to provide access to the official STXT parser and tools.
@@ -0,0 +1,19 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "stxt"
7
+ version = "0.0.1"
8
+ description = "Official STXT library for Python (placeholder)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = { text = "MIT" }
12
+
13
+ authors = [
14
+ { name = "Joan Costa", email = "tu-email@ejemplo.com" }
15
+ ]
16
+
17
+ [project.urls]
18
+ Homepage = "https://stxt.dev"
19
+ Source = "https://github.com/mombiela/stxt"
stxt-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ from .core import STXTDocument, parse, __version__
2
+
3
+ __all__ = ["STXTDocument", "parse", "__version__"]
@@ -0,0 +1,12 @@
1
+ from dataclasses import dataclass
2
+
3
+ __version__ = "0.0.1"
4
+
5
+
6
+ @dataclass
7
+ class STXTDocument:
8
+ raw: str
9
+
10
+
11
+ def parse(text: str) -> STXTDocument:
12
+ return STXTDocument(raw=text)
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: stxt
3
+ Version: 0.0.1
4
+ Summary: Official STXT library for Python (placeholder)
5
+ Author-email: Joan Costa <tu-email@ejemplo.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://stxt.dev
8
+ Project-URL: Source, https://github.com/mombiela/stxt
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+
12
+ # stxt
13
+
14
+ Minimal Python package for the STXT language.
15
+
16
+ This first release is a placeholder to reserve the `stxt` name on PyPI.
17
+ The API will evolve to provide access to the official STXT parser and tools.
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ stxt/__init__.py
4
+ stxt/core.py
5
+ stxt.egg-info/PKG-INFO
6
+ stxt.egg-info/SOURCES.txt
7
+ stxt.egg-info/dependency_links.txt
8
+ stxt.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ stxt