diff --git a/ParaUtils/AWR/year2025/__init__.py b/ParaUtils/AWR/year2025/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ParaUtils/__init__.py b/ParaUtils/__init__.py index 83d5ed5..190e8fe 100644 --- a/ParaUtils/__init__.py +++ b/ParaUtils/__init__.py @@ -1,4 +1,4 @@ from .utils import * -__version__ = "0.1.4" +__version__ = "0.1.5" __all__ = 't2f ft2 CSG parse_WPS_rankings'.split() diff --git a/pyproject.toml b/pyproject.toml index 8098176..f88e546 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/setup.py b/setup.py index ba3eb46..a9905e8 100644 --- a/setup.py +++ b/setup.py @@ -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, ) \ No newline at end of file