text-summarizer-aweebtaku 1.2.5__tar.gz → 1.2.7__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.
- {text_summarizer_aweebtaku-1.2.5/text_summarizer_aweebtaku.egg-info → text_summarizer_aweebtaku-1.2.7}/PKG-INFO +7 -7
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/setup.py +10 -3
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/text_summarizer/__init__.py +1 -1
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7/text_summarizer_aweebtaku.egg-info}/PKG-INFO +7 -7
- text_summarizer_aweebtaku-1.2.7/text_summarizer_aweebtaku.egg-info/requires.txt +6 -0
- text_summarizer_aweebtaku-1.2.5/text_summarizer_aweebtaku.egg-info/requires.txt +0 -6
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/LICENSE +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/MANIFEST.in +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/README.md +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/create_shortcuts.bat +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/requirements.txt +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/setup.cfg +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/text_summarizer/cli.py +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/text_summarizer/create_shortcuts.py +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/text_summarizer/data/__init__.py +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/text_summarizer/data/tennis.csv +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/text_summarizer/summarizer.py +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/text_summarizer/ui.py +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/text_summarizer_aweebtaku.egg-info/SOURCES.txt +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/text_summarizer_aweebtaku.egg-info/dependency_links.txt +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/text_summarizer_aweebtaku.egg-info/entry_points.txt +0 -0
- {text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/text_summarizer_aweebtaku.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: text-summarizer-aweebtaku
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.7
|
|
4
4
|
Summary: A text summarization tool using GloVe embeddings and PageRank algorithm
|
|
5
5
|
Home-page: https://github.com/AWeebTaku/Summarizer
|
|
6
6
|
Author: Aditya Chaurasiya
|
|
@@ -17,12 +17,12 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
17
17
|
Requires-Python: >=3.8
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
License-File: LICENSE
|
|
20
|
-
Requires-Dist: pandas
|
|
21
|
-
Requires-Dist: numpy
|
|
22
|
-
Requires-Dist: nltk
|
|
23
|
-
Requires-Dist: scikit-learn
|
|
24
|
-
Requires-Dist: networkx
|
|
25
|
-
Requires-Dist: requests
|
|
20
|
+
Requires-Dist: pandas>=1.3.0
|
|
21
|
+
Requires-Dist: numpy>=1.21.0
|
|
22
|
+
Requires-Dist: nltk>=3.6
|
|
23
|
+
Requires-Dist: scikit-learn>=1.0
|
|
24
|
+
Requires-Dist: networkx>=2.6
|
|
25
|
+
Requires-Dist: requests>=2.25.0
|
|
26
26
|
Dynamic: author
|
|
27
27
|
Dynamic: author-email
|
|
28
28
|
Dynamic: classifier
|
|
@@ -3,12 +3,19 @@ from setuptools import setup, find_packages
|
|
|
3
3
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
4
4
|
long_description = fh.read()
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
# Define requirements directly to avoid file reading issues during build
|
|
7
|
+
requirements = [
|
|
8
|
+
"pandas>=1.3.0",
|
|
9
|
+
"numpy>=1.21.0",
|
|
10
|
+
"nltk>=3.6",
|
|
11
|
+
"scikit-learn>=1.0",
|
|
12
|
+
"networkx>=2.6",
|
|
13
|
+
"requests>=2.25.0"
|
|
14
|
+
]
|
|
8
15
|
|
|
9
16
|
setup(
|
|
10
17
|
name="text-summarizer-aweebtaku",
|
|
11
|
-
version="1.2.
|
|
18
|
+
version="1.2.7",
|
|
12
19
|
author="Aditya Chaurasiya",
|
|
13
20
|
author_email="adityachaurasiya57527@gmail.com",
|
|
14
21
|
description="A text summarization tool using GloVe embeddings and PageRank algorithm",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: text-summarizer-aweebtaku
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.7
|
|
4
4
|
Summary: A text summarization tool using GloVe embeddings and PageRank algorithm
|
|
5
5
|
Home-page: https://github.com/AWeebTaku/Summarizer
|
|
6
6
|
Author: Aditya Chaurasiya
|
|
@@ -17,12 +17,12 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
17
17
|
Requires-Python: >=3.8
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
License-File: LICENSE
|
|
20
|
-
Requires-Dist: pandas
|
|
21
|
-
Requires-Dist: numpy
|
|
22
|
-
Requires-Dist: nltk
|
|
23
|
-
Requires-Dist: scikit-learn
|
|
24
|
-
Requires-Dist: networkx
|
|
25
|
-
Requires-Dist: requests
|
|
20
|
+
Requires-Dist: pandas>=1.3.0
|
|
21
|
+
Requires-Dist: numpy>=1.21.0
|
|
22
|
+
Requires-Dist: nltk>=3.6
|
|
23
|
+
Requires-Dist: scikit-learn>=1.0
|
|
24
|
+
Requires-Dist: networkx>=2.6
|
|
25
|
+
Requires-Dist: requests>=2.25.0
|
|
26
26
|
Dynamic: author
|
|
27
27
|
Dynamic: author-email
|
|
28
28
|
Dynamic: classifier
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/text_summarizer/data/__init__.py
RENAMED
|
File without changes
|
{text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/text_summarizer/data/tennis.csv
RENAMED
|
File without changes
|
{text_summarizer_aweebtaku-1.2.5 → text_summarizer_aweebtaku-1.2.7}/text_summarizer/summarizer.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|