forked from RWTH-EBC/TEASER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
85 lines (84 loc) · 3.18 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
from setuptools import setup
setup(
name="teaser",
version="0.7.6",
description="Tool for Energy Analysis and Simulation for " "Efficient Retrofit ",
url="https://github.com/RWTH-EBC/TEASER",
author="RWTH Aachen University, E.ON Energy Research Center, "
"Institute of Energy Efficient Buildings and Indoor Climate",
author_email="[email protected]",
license="MIT",
packages=[
"teaser",
"teaser.logic",
"teaser.logic.archetypebuildings",
"teaser.logic.archetypebuildings.tabula",
"teaser.logic.archetypebuildings.tabula.de",
"teaser.logic.archetypebuildings.tabula.dk",
"teaser.logic.archetypebuildings.bmvbs",
"teaser.logic.archetypebuildings.bmvbs.custom",
"teaser.logic.archetypebuildings.urbanrenet",
"teaser.logic.buildingobjects",
"teaser.logic.buildingobjects.buildingphysics",
"teaser.logic.buildingobjects.buildingsystems",
"teaser.logic.buildingobjects.calculation",
"teaser.logic.simulation",
"teaser.data",
"teaser.data.input",
"teaser.data.input.inputdata",
"teaser.data.input.inputdata.weatherdata",
"teaser.data.output",
"teaser.data.output.modelicatemplate",
"teaser.data.output.modelicatemplate.AixLib",
"teaser.data.output.modelicatemplate.IBPSA",
"teaser.examples",
"teaser.examples.verification",
"teaser.examples.examplefiles",
],
package_data={
"teaser.data.input.inputdata": ["*.json"],
"teaser.data.input.inputdata.weatherdata": [
"DEU_BW_Mannheim_107290_TRY2010_12_Jahr_BBSR.mos",
"ASHRAE140.mos",
],
"teaser.data.output.modelicatemplate": [
"package",
"package_order",
"conversion",
"modelica_language",
"modelica_test_script",
],
"teaser.data.output.modelicatemplate.AixLib": [
"AixLib_Multizone",
"AixLib_ThermalZoneRecord_OneElement",
"AixLib_ThermalZoneRecord_TwoElement",
"AixLib_ThermalZoneRecord_ThreeElement",
"AixLib_ThermalZoneRecord_FourElement",
],
"teaser.data.output.modelicatemplate.IBPSA": [
"IBPSA_OneElement",
"IBPSA_TwoElements",
"IBPSA_ThreeElements",
"IBPSA_FourElements",
],
"teaser.data.output.texttemplate": [
"ReadableBuilding_OneElement",
"ReadableBuilding_TwoElement",
"ReadableBuilding_ThreeElement",
"ReadableBuilding_FourElement",
],
"teaser.examples.examplefiles": ["*.json"],
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Code Generators",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
],
install_requires=["mako", "pytest", "pandas", "numpy"],
)