flushing
This commit is contained in:
parent
92a0d650c2
commit
66d31b62e7
1 changed files with 9 additions and 4 deletions
13
setup.py
13
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,
|
||||
)
|
||||
Loading…
Add table
Reference in a new issue