This commit is contained in:
edeymc 2025-11-08 15:53:26 -08:00
parent 92a0d650c2
commit 66d31b62e7

View file

@ -3,9 +3,14 @@ from setuptools import setup, find_packages
setup(
name="ParaUtils",
packages=find_packages(),
package_data = ['Score/*.xlsx','Standards/*.xlsx','AWR/*.xlsx',
package_data = {
'ParaUtils.Score': ['Score/*.xlsx'],
'ParaUtils.Standards': ['Standards/*.xlsx'],
'ParaUtils.AWR': [
'AWR/*.xlsx',
'AWR/year2025/Projected/*.xlsx'
'AWR/year2025/Performance/*.xlsx',
],
},
include_package_data=True,
)