forked from RWTH-EBC/TEASER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
93 lines (92 loc) · 4.09 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
86
87
88
89
90
91
92
93
from setuptools import setup
setup(name='teaser',
version='0.6.7',
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='ebc-teaser@eonerc.rwth-aachen.de',
license='MIT',
packages=[
'teaser',
'teaser.logic',
'teaser.logic.archetypebuildings',
'teaser.logic.archetypebuildings.tabula',
'teaser.logic.archetypebuildings.tabula.de',
'teaser.logic.archetypebuildings.bmvbs',
'teaser.logic.archetypebuildings.bmvbs.custom',
'teaser.logic.archetypebuildings.urbanrenet',
'teaser.logic.buildingobjects',
'teaser.logic.buildingobjects.boundaryconditions',
'teaser.logic.buildingobjects.buildingphysics',
'teaser.logic.buildingobjects.buildingsystems',
'teaser.logic.buildingobjects.calculation',
'teaser.logic.simulation',
'teaser.data',
'teaser.data.bindings',
'teaser.data.bindings.opengis',
'teaser.data.bindings.opengis.citygml',
'teaser.data.bindings.opengis.citygml.raw',
'teaser.data.bindings.opengis.misc',
'teaser.data.bindings.opengis.misc.raw',
'teaser.data.bindings.opengis.raw',
'teaser.data.bindings.schemas',
'teaser.data.bindings.v_0_3_9',
'teaser.data.bindings.v_0_4',
'teaser.data.bindings.v_0_5',
'teaser.data.bindings.v_0_6',
'teaser.data.input',
'teaser.data.input.inputdata',
'teaser.data.input.inputdata.weatherdata',
'teaser.data.output',
'teaser.data.output.texttemplate',
'teaser.data.output.modelicatemplate',
'teaser.data.output.modelicatemplate.AixLib',
'teaser.data.output.modelicatemplate.IBPSA',
'teaser.examples',
'teaser.examples.simulation',
'teaser.examples.verification',
'teaser.examples.examplefiles',
'teaser.examples.examplefiles.MelatenXML'],
package_data={
'teaser.data.input.inputdata': ['*.xml'],
'teaser.data.input.inputdata.weatherdata': [
'DEU_BW_Mannheim_107290_TRY2010_12_Jahr_BBSR.mos'],
'teaser.data.output.modelicatemplate': [
'package',
'package_order',
'conversion',
'modelica_language'],
'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.data.bindings.schemas': ['*.xsd'],
'teaser.examples.examplefiles': ['*.teaserXML', '*.gml'],
'teaser.examples.examplefiles.MelatenXML': ['*.xml']},
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Code Generators',
'Topic :: Scientific/Engineering',
'Topic :: Utilities'],
install_requires=['mako', 'pyxb==1.2.5', 'pytest', 'scipy'])