swarmauri_tool_sentimentanalysis 0.8.0.dev3__tar.gz → 0.8.0.dev5__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.
- {swarmauri_tool_sentimentanalysis-0.8.0.dev3 → swarmauri_tool_sentimentanalysis-0.8.0.dev5}/PKG-INFO +10 -4
- {swarmauri_tool_sentimentanalysis-0.8.0.dev3 → swarmauri_tool_sentimentanalysis-0.8.0.dev5}/README.md +1 -1
- {swarmauri_tool_sentimentanalysis-0.8.0.dev3 → swarmauri_tool_sentimentanalysis-0.8.0.dev5}/pyproject.toml +12 -1
- {swarmauri_tool_sentimentanalysis-0.8.0.dev3 → swarmauri_tool_sentimentanalysis-0.8.0.dev5}/LICENSE +0 -0
- {swarmauri_tool_sentimentanalysis-0.8.0.dev3 → swarmauri_tool_sentimentanalysis-0.8.0.dev5}/swarmauri_tool_sentimentanalysis/SentimentAnalysisTool.py +0 -0
- {swarmauri_tool_sentimentanalysis-0.8.0.dev3 → swarmauri_tool_sentimentanalysis-0.8.0.dev5}/swarmauri_tool_sentimentanalysis/__init__.py +0 -0
{swarmauri_tool_sentimentanalysis-0.8.0.dev3 → swarmauri_tool_sentimentanalysis-0.8.0.dev5}/PKG-INFO
RENAMED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: swarmauri_tool_sentimentanalysis
|
|
3
|
-
Version: 0.8.0.
|
|
3
|
+
Version: 0.8.0.dev5
|
|
4
4
|
Summary: Sentiment Analysis Tool
|
|
5
|
-
License: Apache-2.0
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Keywords: swarmauri,tool,sentimentanalysis,sentiment,analysis
|
|
6
8
|
Author: Jacob Stewart
|
|
7
9
|
Author-email: jacob@swarmauri.com
|
|
8
10
|
Requires-Python: >=3.10,<3.13
|
|
@@ -10,6 +12,10 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
10
12
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Natural Language :: English
|
|
16
|
+
Classifier: Development Status :: 3 - Alpha
|
|
17
|
+
Classifier: Intended Audience :: Developers
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
13
19
|
Requires-Dist: swarmauri_base
|
|
14
20
|
Requires-Dist: swarmauri_core
|
|
15
21
|
Requires-Dist: swarmauri_standard
|
|
@@ -19,7 +25,7 @@ Requires-Dist: transformers (>=4.49.0)
|
|
|
19
25
|
Description-Content-Type: text/markdown
|
|
20
26
|
|
|
21
27
|
|
|
22
|
-

|
|
23
29
|
|
|
24
30
|
<p align="center">
|
|
25
31
|
<a href="https://pypi.org/project/swarmauri_tool_sentimentanalysis/">
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-

|
|
3
3
|
|
|
4
4
|
<p align="center">
|
|
5
5
|
<a href="https://pypi.org/project/swarmauri_tool_sentimentanalysis/">
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "swarmauri_tool_sentimentanalysis"
|
|
3
|
-
version = "0.8.0.
|
|
3
|
+
version = "0.8.0.dev5"
|
|
4
4
|
description = "Sentiment Analysis Tool"
|
|
5
5
|
license = "Apache-2.0"
|
|
6
6
|
readme = "README.md"
|
|
@@ -11,6 +11,10 @@ classifiers = [
|
|
|
11
11
|
"Programming Language :: Python :: 3.10",
|
|
12
12
|
"Programming Language :: Python :: 3.11",
|
|
13
13
|
"Programming Language :: Python :: 3.12",
|
|
14
|
+
"Natural Language :: English",
|
|
15
|
+
"Development Status :: 3 - Alpha",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
14
18
|
]
|
|
15
19
|
authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
|
|
16
20
|
dependencies = [
|
|
@@ -21,6 +25,13 @@ dependencies = [
|
|
|
21
25
|
"tensorflow>=2.16.2",
|
|
22
26
|
"tf-keras"
|
|
23
27
|
]
|
|
28
|
+
keywords = [
|
|
29
|
+
"swarmauri",
|
|
30
|
+
"tool",
|
|
31
|
+
"sentimentanalysis",
|
|
32
|
+
"sentiment",
|
|
33
|
+
"analysis",
|
|
34
|
+
]
|
|
24
35
|
|
|
25
36
|
[tool.uv.sources]
|
|
26
37
|
swarmauri_core = { workspace = true }
|
{swarmauri_tool_sentimentanalysis-0.8.0.dev3 → swarmauri_tool_sentimentanalysis-0.8.0.dev5}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|