Updating data resource files
This commit is contained in:
parent
651ba49780
commit
92a0d650c2
4 changed files with 9 additions and 1 deletions
0
ParaUtils/AWR/year2025/__init__.py
Normal file
0
ParaUtils/AWR/year2025/__init__.py
Normal file
|
|
@ -1,4 +1,4 @@
|
||||||
from .utils import *
|
from .utils import *
|
||||||
|
|
||||||
__version__ = "0.1.4"
|
__version__ = "0.1.5"
|
||||||
__all__ = 't2f ft2 CSG parse_WPS_rankings'.split()
|
__all__ = 't2f ft2 CSG parse_WPS_rankings'.split()
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,9 @@ readme = "README.md"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
dynamic = ["version"]
|
dynamic = ["version"]
|
||||||
|
|
||||||
|
[tool.setuptools.package-data]
|
||||||
|
my_package = ["Standards/*xlsx","Score/*xlsx","AWR/**/*xlsx"]
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"pandas",
|
"pandas",
|
||||||
"numpy"
|
"numpy"
|
||||||
|
|
|
||||||
5
setup.py
5
setup.py
|
|
@ -3,4 +3,9 @@ from setuptools import setup, find_packages
|
||||||
setup(
|
setup(
|
||||||
name="ParaUtils",
|
name="ParaUtils",
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
|
package_data = ['Score/*.xlsx','Standards/*.xlsx','AWR/*.xlsx',
|
||||||
|
'AWR/year2025/Projected/*.xlsx'
|
||||||
|
'AWR/year2025/Performance/*.xlsx',
|
||||||
|
],
|
||||||
|
include_package_data=True,
|
||||||
)
|
)
|
||||||
Loading…
Add table
Reference in a new issue