forked from grid-parity-exchange/Egret
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (38 loc) · 1.44 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
# ___________________________________________________________________________
#
# EGRET: Electrical Grid Research and Engineering Tools
# Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC
# (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the U.S.
# Government retains certain rights in this software.
# This software is distributed under the Revised BSD License.
# ___________________________________________________________________________
from setuptools import setup, find_packages
from distutils.core import Extension
DISTNAME = 'egret'
VERSION = '0.1.0'
PACKAGES = find_packages()
EXTENSIONS = []
DESCRIPTION = 'EGRET: Electrical Grid Research and Engineering Tools.'
LONG_DESCRIPTION = open('README.md').read()
AUTHOR = 'Michael Bynum, Anya Castillo, Carl Laird, Bernard Knueven and Jean-Paul Watson'
MAINTAINER_EMAIL = '[email protected]'
LICENSE = 'Revised BSD'
URL = 'no-url-yet'
setuptools_kwargs = {
'zip_safe': False,
'install_requires': [],
'scripts': [],
'include_package_data': True,
'install_requires' : ['pyomo>=5.6', 'numpy', 'pytest', 'pandas', 'matplotlib', 'seaborn']
}
setup(name=DISTNAME,
version=VERSION,
packages=PACKAGES,
ext_modules=EXTENSIONS,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
maintainer_email=MAINTAINER_EMAIL,
license=LICENSE,
url=URL,
**setuptools_kwargs)