Skip to content

Commit 86a9ca7

Browse files
committed
0.1.2
1 parent 5b1fab5 commit 86a9ca7

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

googletrends/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
__author__ = 'Erdogan Tasksen'
1414
__email__ = 'erdogant@gmail.com'
15-
__version__ = '0.1.1'
15+
__version__ = '0.1.2'
1616

1717
# module level doc-string
1818
__doc__ = """

requirements.txt

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1-
#conda create -n env_googletrends python=3.6
1+
#conda create -n env_googletrends python=3.10
22
#conda activate env_googletrends
33
#conda install spyder
44

5-
5+
pytrends
6+
matplotlib
7+
numpy
8+
pandas
9+
worldmap
10+
scikit-learn
11+
colourmap
12+
scipy

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
1111

1212
# Setup ------------
13-
with open("README.md", "r") as fh:
13+
with open("README.md", "r", encoding="utf8") as fh:
1414
long_description = fh.read()
1515
setuptools.setup(
1616
install_requires=['pytrends','matplotlib','numpy','pandas','worldmap','scikit-learn','colourmap','scipy'],

0 commit comments

Comments
 (0)