rigplane 0.0.0__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.
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: rigplane
3
+ Version: 0.0.0
4
+ Summary: Vendor-neutral open core for local radio control workflows.
5
+ Project-URL: Homepage, https://github.com/morozsm/rigplane
6
+ Project-URL: Repository, https://github.com/morozsm/rigplane
7
+ Author: Sergey Morozov
8
+ License-Expression: MIT
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Topic :: Communications :: Ham Radio
14
+ Requires-Python: >=3.10
15
+ Description-Content-Type: text/markdown
16
+
17
+ # RigPlane
18
+
19
+ Vendor-neutral open core for local radio control workflows.
20
+
21
+ This repository currently reserves the RigPlane project namespace while the
22
+ existing `icom-lan` project is evaluated for a staged rename.
@@ -0,0 +1,6 @@
1
+ # RigPlane
2
+
3
+ Vendor-neutral open core for local radio control workflows.
4
+
5
+ This repository currently reserves the RigPlane project namespace while the
6
+ existing `icom-lan` project is evaluated for a staged rename.
@@ -0,0 +1,28 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "rigplane"
7
+ version = "0.0.0"
8
+ description = "Vendor-neutral open core for local radio control workflows."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ authors = [
13
+ { name = "Sergey Morozov" }
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "Intended Audience :: Developers",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Programming Language :: Python :: 3",
20
+ "Topic :: Communications :: Ham Radio",
21
+ ]
22
+
23
+ [project.urls]
24
+ Homepage = "https://github.com/morozsm/rigplane"
25
+ Repository = "https://github.com/morozsm/rigplane"
26
+
27
+ [tool.hatch.build.targets.wheel]
28
+ packages = ["src/rigplane"]
@@ -0,0 +1,5 @@
1
+ """RigPlane namespace placeholder."""
2
+
3
+ __all__ = ["__version__"]
4
+
5
+ __version__ = "0.0.0"