Updating data resource files

This commit is contained in:
edeymc 2025-11-08 15:50:13 -08:00
parent 651ba49780
commit 92a0d650c2
4 changed files with 9 additions and 1 deletions

View file

View file

@ -1,4 +1,4 @@
from .utils import *
__version__ = "0.1.4"
__version__ = "0.1.5"
__all__ = 't2f ft2 CSG parse_WPS_rankings'.split()

View file

@ -9,6 +9,9 @@ readme = "README.md"
license = "MIT"
dynamic = ["version"]
[tool.setuptools.package-data]
my_package = ["Standards/*xlsx","Score/*xlsx","AWR/**/*xlsx"]
dependencies = [
"pandas",
"numpy"

View file

@ -3,4 +3,9 @@ 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',
],
include_package_data=True,
)