16 lines
No EOL
417 B
Python
16 lines
No EOL
417 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="ParaUtils",
|
|
packages=find_packages(),
|
|
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,
|
|
) |