flushing
This commit is contained in:
parent
92a0d650c2
commit
66d31b62e7
1 changed files with 9 additions and 4 deletions
7
setup.py
7
setup.py
|
|
@ -3,9 +3,14 @@ from setuptools import setup, find_packages
|
||||||
setup(
|
setup(
|
||||||
name="ParaUtils",
|
name="ParaUtils",
|
||||||
packages=find_packages(),
|
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/Projected/*.xlsx'
|
||||||
'AWR/year2025/Performance/*.xlsx',
|
'AWR/year2025/Performance/*.xlsx',
|
||||||
],
|
],
|
||||||
|
},
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
)
|
)
|
||||||
Loading…
Add table
Reference in a new issue