-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (47 loc) · 1.85 KB
/
setup.py
File metadata and controls
49 lines (47 loc) · 1.85 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import setuptools
from setuptools import setup
pkgs = {
"required": [
"grid2op>=1.6.4",
"lightsim2grid>=0.5.5",
"pandas>=1.2.4",
"psutil>=5.7.2",
"matplotlib>=3.3.2",
"pybind11>=2.5.0",
"ipykernel>=5.3.4",
"ipywidgets>=7.5.1",
"numpy>=1.19.3",
"pytest>=6.2.2",
"lightsim2grid>=0.6.0",
# We don't need these
"scipy<=1.6.0"
]
}
setup(name='Oracle4Grid',
version='1.0.6',
description='Oracle agent that finds the best course of actions aposteriori, within a given perimeter of actions',
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
"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='Nicolas Megel, Mario Jothy, Antoine Marot',
author_email='nico.megel@gmail.com, mariojothy@gmail.com, antoine-marot@live.fr',
url="https://github.com/marota/Oracle4Grid/",
download_url = 'https://github.com/marota/Oracle4Grid/archive/refs/tags/1.0.4.tar.gz',
license='Mozilla Public License 2.0 (MPL 2.0)',
packages=setuptools.find_packages(),
include_package_data=True,
package_data={'oracle': ["oracle4grid/ressources/config.ini",
"oracle4grid/ressources/rte_case14_realistic/test_unitary_actions.json"]},
install_requires=pkgs["required"],
zip_safe=False,
entry_points={'console_scripts': ['oracle4grid=oracle4grid.main:main']},
)