forked from SEED-platform/seed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (21 loc) · 769 Bytes
/
setup.py
File metadata and controls
28 lines (21 loc) · 769 Bytes
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
"""
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.",
)