diff --git a/setup.py b/setup.py index 6ea6754..4f660ab 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import os -version = '1.0.5' +version = '1.0.6' entry_points = { 'openprocurement.auctions.core.plugins': [ @@ -36,5 +36,10 @@ 'openprocurement.api', 'openprocurement.auctions.core', ], + package_data={ + 'openprocurement.auctions.flash': [ + 'cav.json' + ] + }, entry_points=entry_points, )