struggle-annotator 0.2.3__tar.gz → 0.2.4__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.
- {struggle_annotator-0.2.3/struggle_annotator.egg-info → struggle_annotator-0.2.4}/PKG-INFO +5 -4
- {struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/README.md +3 -2
- {struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/pyproject.toml +2 -2
- {struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/struggle_annotator/frontend/build/index.html +1 -1
- {struggle_annotator-0.2.3 → struggle_annotator-0.2.4/struggle_annotator.egg-info}/PKG-INFO +5 -4
- {struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/LICENSE +0 -0
- {struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/MANIFEST.in +0 -0
- {struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/setup.cfg +0 -0
- {struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/struggle_annotator/__init__.py +0 -0
- {struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/struggle_annotator/frontend/build/assets/index-LtXtvZ4l.js +0 -0
- {struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/struggle_annotator.egg-info/SOURCES.txt +0 -0
- {struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/struggle_annotator.egg-info/dependency_links.txt +0 -0
- {struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/struggle_annotator.egg-info/requires.txt +0 -0
- {struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/struggle_annotator.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: struggle-annotator
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Streamlit custom component for interactive NER-style text annotation
|
|
5
5
|
License: MIT License
|
|
6
6
|
|
|
@@ -24,7 +24,7 @@ License: MIT License
|
|
|
24
24
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
25
25
|
SOFTWARE.
|
|
26
26
|
|
|
27
|
-
Requires-Python: >=3.
|
|
27
|
+
Requires-Python: >=3.10
|
|
28
28
|
Description-Content-Type: text/markdown
|
|
29
29
|
License-File: LICENSE
|
|
30
30
|
Requires-Dist: streamlit>=1.28
|
|
@@ -33,11 +33,12 @@ Requires-Dist: build; extra == "dev"
|
|
|
33
33
|
Requires-Dist: twine; extra == "dev"
|
|
34
34
|
Dynamic: license-file
|
|
35
35
|
|
|
36
|
-
[](https://struggle-annotator.streamlit.app/)
|
|
38
37
|
|
|
39
38
|
A Streamlit custom component for interactive text annotation, useful for NER-style labeling tasks. The Python wrapper is published as `struggle_annotator`; the frontend is built with TypeScript and React per the standard Streamlit Components pattern.
|
|
40
39
|
|
|
40
|
+

|
|
41
|
+
|
|
41
42
|
## Installation
|
|
42
43
|
|
|
43
44
|
```bash
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
[](https://struggle-annotator.streamlit.app/)
|
|
3
2
|
|
|
4
3
|
A Streamlit custom component for interactive text annotation, useful for NER-style labeling tasks. The Python wrapper is published as `struggle_annotator`; the frontend is built with TypeScript and React per the standard Streamlit Components pattern.
|
|
5
4
|
|
|
5
|
+

|
|
6
|
+
|
|
6
7
|
## Installation
|
|
7
8
|
|
|
8
9
|
```bash
|
|
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "struggle-annotator"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.4"
|
|
8
8
|
description = "Streamlit custom component for interactive NER-style text annotation"
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
requires-python = ">=3.
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
11
|
license = { file = "LICENSE" }
|
|
12
12
|
dependencies = ["streamlit>=1.28"]
|
|
13
13
|
|
{struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/struggle_annotator/frontend/build/index.html
RENAMED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Struggle Annotator</title>
|
|
7
|
-
<script type="module" crossorigin src="
|
|
7
|
+
<script type="module" crossorigin src="./assets/index-LtXtvZ4l.js"></script>
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
10
|
<div id="root"></div>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: struggle-annotator
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Streamlit custom component for interactive NER-style text annotation
|
|
5
5
|
License: MIT License
|
|
6
6
|
|
|
@@ -24,7 +24,7 @@ License: MIT License
|
|
|
24
24
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
25
25
|
SOFTWARE.
|
|
26
26
|
|
|
27
|
-
Requires-Python: >=3.
|
|
27
|
+
Requires-Python: >=3.10
|
|
28
28
|
Description-Content-Type: text/markdown
|
|
29
29
|
License-File: LICENSE
|
|
30
30
|
Requires-Dist: streamlit>=1.28
|
|
@@ -33,11 +33,12 @@ Requires-Dist: build; extra == "dev"
|
|
|
33
33
|
Requires-Dist: twine; extra == "dev"
|
|
34
34
|
Dynamic: license-file
|
|
35
35
|
|
|
36
|
-
[](https://struggle-annotator.streamlit.app/)
|
|
38
37
|
|
|
39
38
|
A Streamlit custom component for interactive text annotation, useful for NER-style labeling tasks. The Python wrapper is published as `struggle_annotator`; the frontend is built with TypeScript and React per the standard Streamlit Components pattern.
|
|
40
39
|
|
|
40
|
+

|
|
41
|
+
|
|
41
42
|
## Installation
|
|
42
43
|
|
|
43
44
|
```bash
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/struggle_annotator.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/struggle_annotator.egg-info/requires.txt
RENAMED
|
File without changes
|
{struggle_annotator-0.2.3 → struggle_annotator-0.2.4}/struggle_annotator.egg-info/top_level.txt
RENAMED
|
File without changes
|