This commit is contained in:
edeymc 2025-11-08 15:58:02 -08:00
parent 3ed4d29fec
commit 967a31731c

View file

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