From d6b65f2fb43a48270dcd66ac1e873ea3e4792b20 Mon Sep 17 00:00:00 2001 From: Andrew Leitsius Date: Thu, 28 Sep 2017 18:56:23 +0300 Subject: [PATCH 1/2] Prepare openprocurement.auctions.flash 1.0.6. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6ea6754..e0737d3 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': [ From 01d6f0017639657f13520412b5c9ca6e19c7b4ad Mon Sep 17 00:00:00 2001 From: sasha-kantoriz Date: Mon, 13 Nov 2017 14:03:36 +0200 Subject: [PATCH 2/2] Add cav.json to setup package_data --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index e0737d3..4f660ab 100644 --- a/setup.py +++ b/setup.py @@ -36,5 +36,10 @@ 'openprocurement.api', 'openprocurement.auctions.core', ], + package_data={ + 'openprocurement.auctions.flash': [ + 'cav.json' + ] + }, entry_points=entry_points, )