-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (71 loc) · 2.41 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (71 loc) · 2.41 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
66
67
68
69
70
71
72
73
74
75
76
[project]
name = "c104"
version = "2.2.2"
description = "A Python module to simulate SCADA and RTU communication over protocol 60870-5-104 to research ICT behavior in power grids."
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
authors = [
{ name = "Martin Unkel, Fraunhofer FIT", email = "martin.unkel@fit.fraunhofer.de" }
]
keywords = [
"Python bindings",
"scada",
"rtu",
"remote-terminal-unit",
"mtu",
"master-terminal-unit",
"energy-management",
"60870-5-104",
"iec60870-5-104",
"iec60870-5",
"60870",
"lib60870",
"lib60870-C"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: C",
"Programming Language :: C++",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Emulators",
"Topic :: System :: Networking :: Monitoring",
"Topic :: Utilities",
"Typing :: Typed"
]
requires-python = ">=3.7"
[project.urls]
Documentation = "https://iec104-python.readthedocs.io/latest/python/index.html"
"Bug Tracker" = "https://github.com/Fraunhofer-FIT-DIEN/iec104-python/issues"
Changelog = "https://iec104-python.readthedocs.io/latest/changelog.html"
"Source Code" = "https://github.com/Fraunhofer-FIT-DIEN/iec104-python"
[tool.setuptools.packages.find]
where = ["."]
include = ["c104"]
[tool.setuptools.package-data]
"c104" = ["__init__.pyi", "py.typed"]
[build-system]
requires = [
"setuptools>=42",
"wheel",
"ninja>=1.11.1.3",
"cmake>=3.18,<3.28", #3.29 requires libssl.3
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
target-version = ['py37', 'py38', 'py39', 'py310', 'py311', 'py312', 'py313']
skip-string-normalization = true