Skip to content

Commit

Permalink
Fix static data
Browse files Browse the repository at this point in the history
  • Loading branch information
avdata99 committed Feb 15, 2021
1 parent 4ebbdf0 commit 8906a01
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
"Intended Audience :: Developers"
],
packages=setuptools.find_packages(),
package_data={
"yaasr": [
"streams/*/data.json"
]
},
python_requires='>=3.6',
install_requires=[
'requests>=2.25.1',
Expand Down
2 changes: 1 addition & 1 deletion yaasr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os


__VERSION__ = '0.3.6'
__VERSION__ = '0.3.7'
BASE_FOLDER = os.path.dirname(__file__)
STREAMS_FOLDER = os.path.join(BASE_FOLDER, "streams")

Expand Down

0 comments on commit 8906a01

Please sign in to comment.