forked from Grid2op/l2rpn-baselines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
73 lines (68 loc) · 2.58 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Copyright (c) 2020, RTE (https://www.rte-france.com)
# See AUTHORS.txt
# This Source Code Form is subject to the terms of the Mozilla Public License, version 2.0.
# If a copy of the Mozilla Public License, version 2.0 was not distributed with this file,
# you can obtain one at http://mozilla.org/MPL/2.0/.
# SPDX-License-Identifier: MPL-2.0
# This file is part of L2RPN Baselines, L2RPN Baselines a repository to host baselines for l2rpn competitions.
import setuptools
from setuptools import setup
__version__ = "0.5.1"
pkgs = {
"required": [
"grid2op",
"statsmodels>=0.11.1",
"scipy>=1.4.1",
"numpy"
],
"extras": {
"docs": [
"numpydoc>=0.9.2",
"sphinx>=2.4.4",
"sphinx-rtd-theme>=0.4.3",
"sphinxcontrib-trio>=1.1.0",
"autodocsumm>=0.1.13"
],
"challenge": ["grid2op[challenge]>=0.9.1.post1"],
"optional": ["grid2op[optional]>=1.2.0",
"tensorflow>=2.2.0",
"Keras>=2.3.1",
"torch>=1.4.0",
"scikit-learn>=0.22.2",
"gym>=0.17.1"
]
}
}
setup(name='l2rpn_baselines',
version=__version__,
description='L2RPN Baselines a repository to host ' \
'baselines for l2rpn competitions.',
long_description='This repository aims at facilitating ' \
'the use of state of the art algorithm in coming from the ' \
'reinforcement learning community or the power system ' \
'community in the l2rpn competitions. It also provides ' \
'some usefull function to make life or participants to the ' \
'l2rpn competitions easier.',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English"
],
keywords='ML powergrid optmization RL power-systems',
author='Benjamin DONNOT',
author_email='[email protected]',
url="https://github.com/BDonnot/L2RPN_Baselines",
license='MPL',
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=pkgs["required"],
extras_require=pkgs["extras"],
zip_safe=False,
entry_points={}
)