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 +17 -0
- stxt-0.0.1/README.md +6 -0
- stxt-0.0.1/pyproject.toml +19 -0
- stxt-0.0.1/setup.cfg +4 -0
- stxt-0.0.1/stxt/__init__.py +3 -0
- stxt-0.0.1/stxt/core.py +12 -0
- stxt-0.0.1/stxt.egg-info/PKG-INFO +17 -0
- stxt-0.0.1/stxt.egg-info/SOURCES.txt +8 -0
- stxt-0.0.1/stxt.egg-info/dependency_links.txt +1 -0
- stxt-0.0.1/stxt.egg-info/top_level.txt +1 -0
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,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
stxt-0.0.1/stxt/core.py
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.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
stxt
|