-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (54 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
65 lines (54 loc) · 1.56 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# SPDX-FileCopyrightText: 2023 OPAL-RT Germany GmbH
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ['setuptools>=61.0']
build-backend = 'setuptools.build_meta'
[project]
name = 'villas-node'
version = '1.1.0'
description = 'Python support for the VILLASnode simulation-data gateway'
readme = 'README.md'
requires-python = '>=3.10'
keywords = ['simulation', 'power', 'system', 'real-time', 'villas']
# license = 'Apache-2.0'
classifiers = [
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
]
dependencies = [
'linuxfd==1.5; platform_system=="Linux"',
'protobuf==6.32.1',
'libconf==2.0.1',
]
optional-dependencies.dev = [
'black==25.11.0',
'flake8==7.3.0',
'mypy==1.19.0',
'pytest==9.0.1',
'types-protobuf==6.32.1.20251105',
]
[project.scripts]
villas-conf2orchestra-ddf = "villas.node.opal_orchestra_ddf:main"
[project.urls]
GitHub = 'https://github.com/VILLASframework/node'
Project = 'https://www.fein-aachen.org/en/projects/villas-node'
Homepage = 'https://villas.fein-aachen.org'
[[project.authors]]
name = 'Steffen Vogel'
email = '[email protected]'
[[project.authors]]
name = 'Philipp Jungkamp'
email = '[email protected]'
[[tool.mypy.overrides]]
module = ['google']
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ['libconf']
ignore_missing_imports = true
[tool.black]
extend-exclude = '''.*(\.pyi|_pb2.py)$'''
line-length = 90
[tool.setuptools.packages.find]
include = ["villas.node"]