From 0e08930f085b6de39d9e028ee8dbc5ed85b018d8 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Mon, 6 Jul 2020 12:24:30 +0200 Subject: [PATCH] setup.py: Make sure the new price lists are actually packaged Since commit f469a9b9fc417efa2570641214dcefc1bbcae865 we support automatically selecting the price list of the current date - but we still only packaged pricelist.json and not those with more current dates. --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d4f3ae4..7f95d4c 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,11 @@ setup( url='http://git.sysmocom.de/python-inema/', packages=['inema'], install_requires=install_requires, - package_data={'inema': ['data/products.json', 'data/products-2020-01-01.json', 'data/formats.json']}, + package_data={'inema': ['data/products.json', + 'data/products-2020-01-01.json', + 'data/products-2020-07-01.json', + 'data/products-2021-01-01.json', + 'data/formats.json']}, license='AGPLv3', classifiers=[ 'Development Status :: 5 - Production/Stable',