-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1.79 KB
/
Copy pathsetup.py
File metadata and controls
33 lines (30 loc) · 1.79 KB
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
from setuptools import setup, find_packages
__author__ = "Zhongming Shi"
__copyright__ = "Copyright 2023, A/S Group, ITA, ETH Zurich"
__credits__ = ["Zhongming Shi"]
__license__ = "MIT"
__version__ = "2.0"
__maintainer__ = "Zhongming Shi"
__email__ = "cea@arch.ethz.ch"
__status__ = "Production"
setup(name='cea_plugin_bia',
version=__version__,
description="A plugin for the City Energy Analyst: building-integrated agriculture extensions",
license='MIT',
author='Zhongming Shi',
author_email='shi@arch.ethz.ch',
url='https://github.com/shizhongming/cea-plugin-bia',
long_description="A plugin for the City Energy Analyst: building-integrated agriculture (BIA) extensions."
"It has two main functions. One calculates crop yields (kg), environmental impacts "
"including GHG emissions (kg CO2-eq), energy (kWh) and water use (litre), costs including "
"capital and operational expenditures (USD) for the selected crop type on the selected "
"building envelope surface. The other one produces the crop profile and planting calendar"
" for each building surface, based on one of the user-defined objectives."
"As of 15 September 2023, this plugin works the best for Singapore or its adjacent regions "
"as the planting data have been acquired from the Tropical Technologies (T2) Laboratory "
"affiliated to the National University of Singapore in Clementi, Singapore. We are working on"
"expanding our database to include Zurich, Switzerland and its adjacent regions.",
py_modules=[''],
packages=find_packages(),
package_data={},
include_package_data=True)