-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (34 loc) · 1.23 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import pathlib
from setuptools import setup
from energyplus_python_apps import NAME, VERSION
readme_file = pathlib.Path(__file__).parent.resolve() / 'README.md'
readme_contents = readme_file.read_text()
setup(
name=NAME,
version=VERSION,
packages=['energyplus_python_apps'],
description="Meta-package collecting all official EnergyPlus Python utilities",
long_description=readme_contents,
long_description_content_type='text/markdown',
author='Edwin Lee, for NREL, for United States Department of Energy',
url='https://github.com/Myoldmopar/EnergyPlusPythonApps',
license='ModifiedBSD',
install_requires=[
'energyplus-launch>=3.7.2',
'energyplus-ruleset-model>=0.5',
'energyplus-transition-tools>=2.0.8',
'energyplus-pet>=0.62',
'energyplus-idd-idf-utilities>=0.88',
'energyplus-regressions>=2.0.7',
'energyplus-api-helpers>=0.4',
'energyplus-diff-analysis>=0.2',
'energyplus-version>=1.0.0'
# 'energyplus-expand-objects>=blah',
# 'energyplus-epjson-editor>=blah',
],
entry_points={
'console_scripts': [
'energyplus_python_configure=energyplus_python_apps.configure:configure_cli',
]
}
)