diff --git a/energyplus_pet/__init__.py b/energyplus_pet/__init__.py index 7d9f9c3..4eceba6 100644 --- a/energyplus_pet/__init__.py +++ b/energyplus_pet/__init__.py @@ -1,2 +1,2 @@ NICE_NAME = "EnergyPlus P.E.T." -VERSION = "0.35" +VERSION = "0.40" diff --git a/setup.py b/setup.py index 98cb211..66beda5 100644 --- a/setup.py +++ b/setup.py @@ -11,13 +11,14 @@ version=VERSION, packages=['energyplus_pet', 'energyplus_pet.forms', 'energyplus_pet.equipment'], description="Parameter Estimation Tools for Generating EnergyPlus Inputs from Raw Performance Data", + package_data={"energyplus_pet.forms": ["*.png"]}, long_description=readme_contents, long_description_content_type='text/markdown', author='Edwin Lee', author_email='a@a.a', url='https://github.com/Myoldmopar/EnergyPlusPet', license='UnlicensedForNow', - install_requires=['pyperclip', 'tksheet', 'matplotlib', 'numpy'], + install_requires=['pyperclip', 'tksheet', 'matplotlib', 'numpy', 'scipy'], entry_points={ 'console_scripts': ['energyplus_pet_gui=energyplus_pet.runner:main_gui'] }