17 lines
No EOL
489 B
Python
17 lines
No EOL
489 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="ParaUtils",
|
|
version="0.1.6.1"
|
|
packages=find_packages(),
|
|
package_data = {
|
|
'ParaUtils.Score': ['ParaUtils/Score/*.xlsx'],
|
|
'ParaUtils.Standards': ['ParaUtils/Standards/*.xlsx'],
|
|
'ParaUtils.AWR': [
|
|
'ParaUtils/AWR/*.xlsx',
|
|
'ParaUtils/AWR/year2025/Projected/*.xlsx'
|
|
'ParaUtils/AWR/year2025/Performance/*.xlsx',
|
|
],
|
|
},
|
|
include_package_data=True,
|
|
) |