forked from NREL/Marmot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 841 Bytes
/
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
# -*- coding: utf-8 -*-
"""
Created on Thu Mar 18 13:32:13 2021
@author: Daniel Levie
"""
from setuptools import setup
setup(
name="marmot",
version_config=True,
setup_requires=["setuptools-git-versioning"],
author="Daniel Levie",
author_email="[email protected]",
description="A Python package to process and plot PLEXOS outputs",
url="https://github.nrel.gov/PCM/Marmot",
packages=[
"marmot",
"marmot.formatters",
"marmot.metamanagers",
"marmot.utils",
"marmot.plottingmodules",
"marmot.plottingmodules.plotutils",
],
install_requires=[
"h5py==2.10.0",
"numpy",
"pandas>=1.0.5",
"tables" "PyYAML",
"matplotlib>=3.1.0",
"h5plexos @ git+https://github.com/NREL/h5plexos.git#egg=h5plexos",
],
)