-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
48 lines (43 loc) · 945 Bytes
/
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
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
| \.git
| \.venv
)/
'''
[tool.poetry]
name = "ieee118_power_flow_data"
version = "1.0.0"
description = "Power Flow Data of IEEE-118 Bus System"
license = "CC-BY-NC-SA-4.0"
authors = [
"Evgeny Tsydenov <[email protected]>",
"Anton Prokhorov <[email protected]>",
]
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^1.5.1"
numpy = "^1.23.4"
matplotlib = "^3.6.2"
jupyter = "^1.0.0"
seaborn = "^0.12.1"
requests = "^2.28.1"
dvc = "^2.34.0"
python-docx = "^0.8.11"
pandapower = "^2.10.1"
numba = "^0.56.4"
plotly = "^5.11.0"
[tool.poetry.group.dev.dependencies]
black = {extras = ["jupyter"], version = "^22.10.0"}
flake8 = "^5.0.4"
isort = "^5.10.1"
pre-commit = "^2.20.0"
flake8-docstrings = "^1.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"