-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
executable file
·68 lines (63 loc) · 1.81 KB
/
pyproject.toml
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
[tool.poetry]
name = "grid2viz"
version = "1.4.1"
description = "Grid2Op Visualization companion app."
readme = "README.md"
authors = [
"Mario Jothy <[email protected]>",
"Vincent Renault <[email protected]>",
"Antoine Marot <antoine.marot@rte-france>",
"Maxime Mohandi <[email protected]>"
]
license = "MPL"
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",
]
packages = [
{ include = "grid2viz" }
]
[tool.poetry.scripts]
grid2viz = 'grid2viz.main:main'
[tool.poetry.dependencies]
python = "^3.7"
click = "^8.1.3"
colorama = "^0.4.4"
'dash[testing]' = "^2.5.0"
dash-bootstrap-components = "^1.0.1"
dash-antd-components = "^0.0.1-rc.2"
dash-daq = "^0.5.0"
dill = "^0.3.3"
Grid2Op = "^1.7.1"
gunicorn = "^20.0.4"
imageio = "^2.9.0"
jupyter-dash = { version = "^0.3.1", optional = true }
pathos = "^0.3.0"
pandapower = "^2.2.0"
matplotlib = "^3.3.3"
numpy = "^1.22.0"
seaborn = "^0.12.2"
nbgitpuller = { version = "^0.9.0", optional = true }
jupyter-server-proxy = { version = "^1.5.0", optional = true }
ExpertOp4grid = { version = "^0.1.3", optional = true }
[tool.poetry.dev-dependencies]
black = "^20.8b1"
numpydoc = "^1.1.0"
sphinx-rtd-theme = "^0.5.2"
sphinxcontrib-trio = "^1.1.2"
Sphinx = "^4.0.0"
[tool.poetry.extras]
Jupyter-dash = ["jupyter-dash"]
Nbgitpuller = ["nbgitpuller"]
jupyter-server-proxy = ["jupyter-server-proxy"]
ExpertSystem = ["ExpertOp4grid"]
Docs = ["Sphinx"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"