setup.py: Make sure the new price lists are actually packaged

Since commit f469a9b9fc 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.
This commit is contained in:
Harald Welte 2020-07-06 12:24:30 +02:00
parent 9b22103c04
commit 0e08930f08
1 changed files with 5 additions and 1 deletions

View File

@ -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',