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 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`.
@@ -0,0 +1,5 @@
1
+ # py61850
2
+
3
+ Name placeholder for a pure-Python IEC 61850 stack (MMS today; GOOSE, SV and
4
+ SCL simulation planned). This `0.0.1` release only reserves the name — the real
5
+ library will follow at `0.1.0`.
@@ -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"]
@@ -0,0 +1,5 @@
1
+ """py61850 — placeholder release reserving the name on PyPI.
2
+
3
+ The real pure-Python IEC 61850 stack (MMS/GOOSE/SV/SCL) ships at 0.1.0.
4
+ """
5
+ __version__ = "0.0.1"