-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
58 lines (56 loc) · 1.88 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
import setuptools
from setuptools import setup
pkgs = {
"required": [
"docutils>=0.16",
"graphviz>=0.14",
"Grid2Op>=1.6.4",
"lightsim2grid>=0.5.5",
"networkx>=2.4",
"numpy>=1.18.4",
"pandapower>=2.2.2",
"scipy>=1.6.0",#needed for pandapower compatibility for now
"pandas>=1.0.4",
"pathlib>=1.0.1",
"pydot>=1.4.1",
#"pygame==1.9.6",
"matplotlib>=3.3.3",
"pytest>=4.4.2",
"Sphinx>=3.1.2"
#numba==0.49.1
],
"extras": {
"optional": [
"oct2py>=5.0.4",
"pypower>=5.1.4",
"pypownet>=2.2.0"
]
}
}
setup(name='ExpertOp4Grid',
version='0.2.3.post2',
description='Expert analysis algorithm for solving overloads in a powergrid',
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='Antoine Marot',
author_email='[email protected]',
url="https://github.com/marota/ExpertOp4Grid/",
download_url = 'https://github.com/marota/ExpertOp4Grid/archive/refs/tags/0.1.3.post1.tar.gz',
license='Mozilla Public License 2.0 (MPL 2.0)',
packages=setuptools.find_packages(),
extras_require=pkgs["extras"],
include_package_data=True,
install_requires=pkgs["required"],
zip_safe=False,
entry_points={'console_scripts': ['expertop4grid=alphaDeesp.main:main']},
)