Skip to content

Commit

Permalink
Merge pull request #20 from Myoldmopar/QuickPolishing
Browse files Browse the repository at this point in the history
Polishing
  • Loading branch information
Myoldmopar committed Apr 14, 2023
2 parents e49da03 + 6dadc9a commit b59b3ba
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v2

- name: Set up Python 3.8
uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 # v4.2.0
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0
with:
python-version: 3.8

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v2

- name: Set up Python
uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 # v4.2.0
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0
with:
python-version: 3.8

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v2
- name: Set up Python 3.8
uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 # v4.2.0
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0
with:
python-version: 3.8
- name: Install Pip Dependencies
Expand Down
2 changes: 1 addition & 1 deletion energyplus_pet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
NAME = "energyplus_pet"
NICE_NAME = "EnergyPlus P.E.T."
VERSION = "0.48"
VERSION = "0.49"
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ numpy
scipy
pyperclip
tksheet
pillow>=8.0.0

# for building documentation
sphinx
Expand Down
28 changes: 23 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
readme_file = pathlib.Path(__file__).parent.resolve() / 'README.md'
readme_contents = readme_file.read_text()

install_requires = ['pyperclip', 'tksheet', 'matplotlib', 'numpy', 'scipy', 'PLAN-Tools>=0.5']
install_requires = ['pyperclip', 'tksheet', 'matplotlib', 'numpy', 'scipy', 'PLAN-Tools>=0.5', 'pillow>=8.0.0']
if system() == 'Windows':
install_requires.append('pypiwin32')

Expand All @@ -20,13 +20,31 @@
include_package_data=True,
long_description=readme_contents,
long_description_content_type='text/markdown',
author='Edwin Lee',
author_email='a@a.a',
author='Edwin Lee, for NREL, for United States Department of Energy',
url='https://github.com/Myoldmopar/EnergyPlusPet',
license='UnlicensedForNow',
license='ModifiedBSD',
install_requires=install_requires,
entry_points={
'gui_scripts': ['energyplus_pet_gui=energyplus_pet.runner:main_gui'],
'console_scripts': ['energyplus_pet_configure=energyplus_pet.configure:configure_cli',]
}
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Utilities',
],
platforms=[
'Linux (Tested on Ubuntu)', 'MacOSX', 'Windows'
],
keywords=[
'energyplus_launch', 'ep_launch',
'EnergyPlus', 'eplus', 'Energy+',
'Building Simulation', 'Whole Building Energy Simulation',
'Heat Transfer', 'HVAC', 'Modeling',
]
)

0 comments on commit b59b3ba

Please sign in to comment.