diff --git a/setup.py b/setup.py index a9905e8..eea6b11 100644 --- a/setup.py +++ b/setup.py @@ -3,9 +3,14 @@ from setuptools import setup, find_packages setup( name="ParaUtils", packages=find_packages(), - package_data = ['Score/*.xlsx','Standards/*.xlsx','AWR/*.xlsx', - 'AWR/year2025/Projected/*.xlsx' - 'AWR/year2025/Performance/*.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, ) \ No newline at end of file