py61850 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- py61850-0.0.1/PKG-INFO +15 -0
- py61850-0.0.1/README.md +5 -0
- py61850-0.0.1/pyproject.toml +16 -0
- py61850-0.0.1/src/py61850/__init__.py +5 -0
py61850-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: py61850
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Name placeholder — a pure-Python IEC 61850 stack (MMS today; GOOSE/SV/SCL planned). Real release coming.
|
|
5
|
+
Author: Guilherme
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: goose,iec61850,iso9506,mms,scada,substation
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# py61850
|
|
12
|
+
|
|
13
|
+
Name placeholder for a pure-Python IEC 61850 stack (MMS today; GOOSE, SV and
|
|
14
|
+
SCL simulation planned). This `0.0.1` release only reserves the name — the real
|
|
15
|
+
library will follow at `0.1.0`.
|
py61850-0.0.1/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "py61850"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Name placeholder — a pure-Python IEC 61850 stack (MMS today; GOOSE/SV/SCL planned). Real release coming."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Guilherme" }]
|
|
13
|
+
keywords = ["iec61850", "mms", "goose", "iso9506", "scada", "substation"]
|
|
14
|
+
|
|
15
|
+
[tool.hatch.build.targets.wheel]
|
|
16
|
+
packages = ["src/py61850"]
|