-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1.37 KB
/
setup.py
File metadata and controls
33 lines (30 loc) · 1.37 KB
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
#*****************************************************#
# This file is part of GRIDOPT. #
# #
# Copyright (c) 2019, Tomas Tinoco De Rubira. #
# #
# GRIDOPT is released under the BSD 2-clause license. #
#*****************************************************#
import os
from setuptools import setup, find_packages
exec(open(os.path.join('gridopt', 'version.py')).read())
setup(name='GRIDOPT',
zip_safe=False,
version=__version__,
description='Power Grid Optimization Library',
url='https://github.com/ttinoco/GRIDOPT',
author='Tomas Tinoco De Rubira',
author_email='ttinoco5687@gmail.com',
license='BSD 2-Clause License',
packages=find_packages(),
entry_points={'console_scripts': ['gridopt=gridopt.scripts.gridopt:main']},
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6'],
install_requires=['cython>=0.20.1',
'numpy>=1.11.2',
'scipy>=0.18.1',
'pfnet==1.3.5rc1',
'optalg==1.1.8rc1',
'nose'])