Skip to content

Commit 4e1b598

Browse files
authored
Merge pull request #4 from Myoldmopar/PolishingYetAgain
Polishing Again
2 parents 000654f + 729cf44 commit 4e1b598

File tree

4 files changed

+25
-7
lines changed

4 files changed

+25
-7
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v2
1111

1212
- name: Set up Python 3.8
13-
uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 # v4.2.0
13+
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0
1414
with:
1515
python-version: 3.8
1616

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v2
1414

1515
- name: Set up Python
16-
uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 # v4.2.0
16+
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0
1717
with:
1818
python-version: 3.8
1919

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v2
3636
- name: Set up Python 3.8
37-
uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 # v4.2.0
37+
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0
3838
with:
3939
python-version: 3.8
4040
- name: Install Python Dependencies

setup.py

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,37 @@
66

77
setup(
88
name="energyplus_api_helpers",
9-
version="0.3",
9+
version="0.4",
1010
packages=['energyplus_api_helpers', 'energyplus_api_helpers.demos'],
1111
description="A set of helper classes, functions and demos, for interacting with the EnergyPlus Python API",
1212
package_data={"energyplus_api_helpers.demos": ["*.html"]},
1313
include_package_data=True,
1414
long_description=readme_contents,
1515
long_description_content_type='text/markdown',
16-
author='Edwin Lee',
17-
author_email='a@a.a',
16+
author='Edwin Lee, for NREL, for the United States Department of Energy',
1817
url='https://github.com/Myoldmopar/EnergyPlusAPIHelper',
19-
license='UnlicensedForNow',
18+
license='ModifiedBSD',
2019
install_requires=['matplotlib', 'flask', 'pysparklines', 'asciichartpy'],
2120
# entry_points={
2221
# 'console_scripts': ['energyplus_api_helper=energyplus_api_helpers.runner:main_gui']
2322
# }
23+
classifiers=[
24+
'Development Status :: 4 - Beta',
25+
'Intended Audience :: Science/Research',
26+
'Natural Language :: English',
27+
'Operating System :: OS Independent',
28+
'Programming Language :: Python :: 3 :: Only',
29+
'Topic :: Scientific/Engineering',
30+
'Topic :: Scientific/Engineering :: Physics',
31+
'Topic :: Utilities',
32+
],
33+
platforms=[
34+
'Linux (Tested on Ubuntu)', 'MacOSX', 'Windows'
35+
],
36+
keywords=[
37+
'energyplus_launch', 'ep_launch',
38+
'EnergyPlus', 'eplus', 'Energy+',
39+
'Building Simulation', 'Whole Building Energy Simulation',
40+
'Heat Transfer', 'HVAC', 'Modeling',
41+
]
2442
)

0 commit comments

Comments
 (0)