-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
47 lines (42 loc) · 1.68 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
43
44
45
46
47
# ___________________________________________________________________________
#
# 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 pathlib import Path
DISTNAME = 'gridx-egret'
VERSION = '0.5.6.dev0'
PACKAGES = find_packages()
EXTENSIONS = []
DESCRIPTION = 'EGRET: Electrical Grid Research and Engineering Tools.'
AUTHOR = 'Michael Bynum, Anya Castillo, Carl Laird, Bernard Knueven and Jean-Paul Watson'
MAINTAINER_EMAIL = '[email protected]'
LICENSE = 'Revised BSD'
URL = 'https://github.com/grid-parity-exchange/Egret'
setuptools_kwargs = {
'zip_safe': False,
'scripts': [],
'include_package_data': True,
'install_requires': ['pyomo>=6.4', 'numpy', 'pytest', 'pandas',
'matplotlib', 'seaborn', 'scipy', 'networkx',
'coramin==0.1.1'],
'python_requires' : '>=3.7, <4',
}
this_directory = Path(__file__).parent
long_description = (this_directory / 'README.md').read_text()
setup(name=DISTNAME,
version=VERSION,
packages=PACKAGES,
ext_modules=EXTENSIONS,
description=DESCRIPTION,
author=AUTHOR,
maintainer_email=MAINTAINER_EMAIL,
license=LICENSE,
long_description=long_description,
long_description_content_type='text/markdown',
url=URL,
**setuptools_kwargs)