-
Notifications
You must be signed in to change notification settings - Fork 53
/
pyproject.toml
74 lines (69 loc) · 1.41 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
69
70
71
72
73
74
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "motulator"
version = "0.5.0"
dependencies = [
"numpy",
"scipy",
"matplotlib",
]
requires-python = ">=3.8"
authors = [
{name = "Marko Hinkkanen", email = "marko.hinkkanen@aalto.fi"}
]
description = "Motor Drive and Grid Converter Simulator in Python"
readme = "README.md"
license = "MIT"
keywords = [
"control",
"converter",
"grid",
"electric",
"inverter",
"machine",
"motor",
"power",
"simulation",
]
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"ipykernel",
"yapf",
"pylint",
"toml",
"pre-commit",
]
doc = [
"numpy",
"scipy",
"matplotlib",
"numpydoc",
"sphinx==7.1.2",
"sphinx-autoapi",
"sphinx-copybutton",
"sphinx-gallery",
"sphinx-book-theme",
"esbonio",
]
[project.urls]
Homepage = "https://github.com/Aalto-Electric-Drives/motulator"
Documentation = "https://Aalto-Electric-Drives.github.io/motulator/"
[tool.yapf]
based_on_style = "pep8"
column_limit = 79
no_spaces_around_selected_binary_operators = "*,/"
split_before_first_argument = "True"
coalesce_brackets = "True"
spaces_before_comment = 2
[tool.pylint.messages_control]
disable = [
"invalid-name",
"too-few-public-methods",
]