sentiment-analysis-lib 1.0__tar.gz → 1.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.
- sentiment_analysis_lib-1.1/CHANGELOG.txt +3 -0
- {sentiment_analysis_lib-1.0/sentiment_analysis_lib.egg-info → sentiment_analysis_lib-1.1}/PKG-INFO +2 -1
- sentiment_analysis_lib-1.1/sentiment_analysis_lib/__init__.py +1 -0
- {sentiment_analysis_lib-1.0 → sentiment_analysis_lib-1.1/sentiment_analysis_lib.egg-info}/PKG-INFO +2 -1
- {sentiment_analysis_lib-1.0 → sentiment_analysis_lib-1.1}/setup.py +1 -1
- sentiment_analysis_lib-1.0/CHANGELOG.txt +0 -2
- sentiment_analysis_lib-1.0/sentiment_analysis_lib/__init__.py +0 -1
- {sentiment_analysis_lib-1.0 → sentiment_analysis_lib-1.1}/LICENSE +0 -0
- {sentiment_analysis_lib-1.0 → sentiment_analysis_lib-1.1}/MANIFEST.in +0 -0
- {sentiment_analysis_lib-1.0 → sentiment_analysis_lib-1.1}/README.md +0 -0
- {sentiment_analysis_lib-1.0 → sentiment_analysis_lib-1.1}/sentiment_analysis_lib/sentiment.py +0 -0
- {sentiment_analysis_lib-1.0 → sentiment_analysis_lib-1.1}/sentiment_analysis_lib.egg-info/SOURCES.txt +0 -0
- {sentiment_analysis_lib-1.0 → sentiment_analysis_lib-1.1}/sentiment_analysis_lib.egg-info/dependency_links.txt +0 -0
- {sentiment_analysis_lib-1.0 → sentiment_analysis_lib-1.1}/sentiment_analysis_lib.egg-info/top_level.txt +0 -0
- {sentiment_analysis_lib-1.0 → sentiment_analysis_lib-1.1}/setup.cfg +0 -0
{sentiment_analysis_lib-1.0/sentiment_analysis_lib.egg-info → sentiment_analysis_lib-1.1}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: sentiment_analysis_lib
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.1
|
4
4
|
Summary: This is a simple Python package for analysing sentiment of text data.
|
5
5
|
Home-page:
|
6
6
|
Author: Hemanth
|
@@ -26,4 +26,5 @@ This is a simple Python package for analysing sentiment of text data.
|
|
26
26
|
|
27
27
|
|
28
28
|
First Release - 25/7/2025
|
29
|
+
Release 1.1 - 25/7/2025
|
29
30
|
--------------------------
|
@@ -0,0 +1 @@
|
|
1
|
+
from .sentiment import get_sentiment
|
{sentiment_analysis_lib-1.0 → sentiment_analysis_lib-1.1/sentiment_analysis_lib.egg-info}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: sentiment_analysis_lib
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.1
|
4
4
|
Summary: This is a simple Python package for analysing sentiment of text data.
|
5
5
|
Home-page:
|
6
6
|
Author: Hemanth
|
@@ -26,4 +26,5 @@ This is a simple Python package for analysing sentiment of text data.
|
|
26
26
|
|
27
27
|
|
28
28
|
First Release - 25/7/2025
|
29
|
+
Release 1.1 - 25/7/2025
|
29
30
|
--------------------------
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='sentiment_analysis_lib',
|
5
|
-
version='1.
|
5
|
+
version='1.1',
|
6
6
|
description='This is a simple Python package for analysing sentiment of text data.',
|
7
7
|
long_description=open('README.md').read() + '\n\n' + open('CHANGELOG.txt').read(),
|
8
8
|
url='',
|
@@ -1 +0,0 @@
|
|
1
|
-
from .date_time_util import get_current_datetime
|
File without changes
|
File without changes
|
File without changes
|
{sentiment_analysis_lib-1.0 → sentiment_analysis_lib-1.1}/sentiment_analysis_lib/sentiment.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|