Skip to content
This repository was archived by the owner on Nov 8, 2025. It is now read-only.

Commit 3548173

Browse files
author
Vivek Dagar
authored
chore: add dependencies to setup.py
1 parent 2ffc720 commit 3548173

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

setup.py

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,24 @@
22

33
setup(
44
name='pyquantify',
5-
version='1.0.1',
5+
version='1.1.1',
66
packages=find_packages(),
77
install_requires=[
8-
'click',
9-
'nltk',
10-
'tabulate',
8+
'click~=8.1.7',
9+
'nltk~=3.8.1',
10+
'tabulate~=0.9.0',
11+
'requests~=2.31.0',
12+
'beautifulsoup4~=4.12.2',
13+
'bert-extractive-summarizer~=0.10.1',
14+
'pandas~=2.1.4',
15+
'joblib~=1.2.0',
16+
'scikit-learn~=1.3.0',
17+
'matplotlib~=3.7.2',
18+
'seaborn~=0.12.2',
19+
'spacy~=3.7.2',
20+
'wordcloud~=1.9.2',
21+
'textblob~=0.15.3',
22+
'setuptools~=68.0.0',
1123
],
1224
entry_points={
1325
'console_scripts': [
@@ -21,4 +33,4 @@
2133
long_description="""Please refer to the Github for usage guide and more {https://github.com/vivekkdagar/pyquantify}""",
2234
long_description_content_type='text/markdown',
2335
license='GNU General Public License v3.0',
24-
)
36+
)

0 commit comments

Comments
 (0)