Skip to content

Commit

Permalink
Merge pull request #16 from Myoldmopar/PolishingAgain
Browse files Browse the repository at this point in the history
Polishing
  • Loading branch information
Myoldmopar authored Apr 14, 2023
2 parents 41aa433 + 57e39de commit 864e872
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 14 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_iddidf/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = 0.87
__version__ = 0.88
31 changes: 21 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,30 @@
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/myoldmopar/py-idd-idf',
author='Edwin Lee',
author_email='[email protected]',
author='Edwin Lee, for NREL, for the United States Department of Energy',
license='ModifiedBSD',
install_requires=[],
entry_points={
'console_scripts': ['energyplus_idd_idf=energyplus_iddidf.cli:main_cli']
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Utilities',
],
license='UnlicensedForNow',
install_requires=[],
entry_points={
'console_scripts': ['energyplus_idd_idf=energyplus_iddidf.cli:main_cli']
}
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 864e872

Please sign in to comment.