Skip to content

Commit 7481864

Browse files
committed
Adding matplotlib as dependency + generating requirements.txt
1 parent 3282a92 commit 7481864

File tree

4 files changed

+114
-32
lines changed

4 files changed

+114
-32
lines changed

Pipfile

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ gensim = "*"
1010
pseq = "*"
1111
click = "*"
1212
terminaltables = "*"
13+
matplotlib = "*"
1314

1415
[requires]
1516
python_version = "3.6"

Pipfile.lock

+87-32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements.txt

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
-i https://pypi.org/simple
2+
boto3==1.9.200
3+
boto==2.49.0
4+
botocore==1.12.200
5+
certifi==2019.6.16
6+
chardet==3.0.4
7+
click==7.0
8+
cycler==0.10.0
9+
docutils==0.14
10+
gensim==3.8.0
11+
idna==2.8
12+
jmespath==0.9.4
13+
kiwisolver==1.1.0
14+
matplotlib==3.1.1
15+
numpy==1.17.0
16+
pseq==0.1.3
17+
pyparsing==2.4.2
18+
python-dateutil==2.8.0 ; python_version >= '2.7'
19+
requests==2.22.0
20+
s3transfer==0.2.1
21+
scipy==1.3.0
22+
six==1.12.0
23+
smart-open==1.8.4
24+
terminaltables==3.1.0
25+
urllib3==1.25.3 ; python_version >= '3.4'

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ def get_version(*relpath):
4646
'gensim',
4747
'terminaltables',
4848
'click',
49+
'matplotlib',
4950
],
5051
package_dir={'': 'src'},
5152
packages=find_packages('src'),

0 commit comments

Comments
 (0)