You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SEED Platform (TM), Copyright (c) Alliance for Sustainable Energy, LLC, and other contributors.
See also https://github.com/SEED-platform/seed/blob/main/LICENSE.md
"""
import json
import locale
from setuptools import find_packages, setup
def get_version():
with open("package.json", encoding=locale.getpreferredencoding(False)) as f:
j = json.load(f)
return j["version"]
setup(
name="seed",
version=get_version(),
packages=find_packages(),
url="seed-platform.org",
license="4-Clause BSD",
author="NREL/LBNL",
author_email="info@seed-platform.org",
description="The SEED Platform is a web-based application that helps organizations easily manage data on the energy performance of large groups of buildings.",