edidio-control-py 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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Admin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,49 @@
1
+ Metadata-Version: 2.4
2
+ Name: edidio_control_py
3
+ Version: 0.0.1
4
+ Summary: Python library for controlling the Control Freak eDIDIO S10 device.
5
+ Home-page: https://github.com/CreativeLightingAdmin/edidio_control_py
6
+ Author: Michael Howes
7
+ Author-email: michael@creativelighting.com.au
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.9
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Topic :: Home Automation
17
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
18
+ Classifier: Framework :: AsyncIO
19
+ Requires-Python: >=3.9
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: protobuf>=3.0
23
+ Dynamic: author
24
+ Dynamic: author-email
25
+ Dynamic: classifier
26
+ Dynamic: description
27
+ Dynamic: description-content-type
28
+ Dynamic: home-page
29
+ Dynamic: license-file
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+ Dynamic: summary
33
+
34
+ # Edidio Control Python Plugin
35
+
36
+ A Python library for communicating with and controlling the Control Freak eDIDIO S10 device.
37
+
38
+ ## Features
39
+
40
+ - Asynchronous TCP communication with eDIDIO controllers.
41
+ - Support for DMX and DALI (including DALI DT8 CCT) message creation.
42
+ - Connection management including keep-alive and auto-reconnect.
43
+
44
+ ## Installation
45
+
46
+ This plugin can be installed via pip:
47
+
48
+ ```bash
49
+ pip install edidio_control_py
@@ -0,0 +1,16 @@
1
+ # Edidio Control Python Plugin
2
+
3
+ A Python library for communicating with and controlling the Control Freak eDIDIO S10 device.
4
+
5
+ ## Features
6
+
7
+ - Asynchronous TCP communication with eDIDIO controllers.
8
+ - Support for DMX and DALI (including DALI DT8 CCT) message creation.
9
+ - Connection management including keep-alive and auto-reconnect.
10
+
11
+ ## Installation
12
+
13
+ This plugin can be installed via pip:
14
+
15
+ ```bash
16
+ pip install edidio_control_py
@@ -0,0 +1,49 @@
1
+ Metadata-Version: 2.4
2
+ Name: edidio_control_py
3
+ Version: 0.0.1
4
+ Summary: Python library for controlling the Control Freak eDIDIO S10 device.
5
+ Home-page: https://github.com/CreativeLightingAdmin/edidio_control_py
6
+ Author: Michael Howes
7
+ Author-email: michael@creativelighting.com.au
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.9
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Topic :: Home Automation
17
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
18
+ Classifier: Framework :: AsyncIO
19
+ Requires-Python: >=3.9
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: protobuf>=3.0
23
+ Dynamic: author
24
+ Dynamic: author-email
25
+ Dynamic: classifier
26
+ Dynamic: description
27
+ Dynamic: description-content-type
28
+ Dynamic: home-page
29
+ Dynamic: license-file
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+ Dynamic: summary
33
+
34
+ # Edidio Control Python Plugin
35
+
36
+ A Python library for communicating with and controlling the Control Freak eDIDIO S10 device.
37
+
38
+ ## Features
39
+
40
+ - Asynchronous TCP communication with eDIDIO controllers.
41
+ - Support for DMX and DALI (including DALI DT8 CCT) message creation.
42
+ - Connection management including keep-alive and auto-reconnect.
43
+
44
+ ## Installation
45
+
46
+ This plugin can be installed via pip:
47
+
48
+ ```bash
49
+ pip install edidio_control_py
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ edidio_control_py.egg-info/PKG-INFO
5
+ edidio_control_py.egg-info/SOURCES.txt
6
+ edidio_control_py.egg-info/dependency_links.txt
7
+ edidio_control_py.egg-info/requires.txt
8
+ edidio_control_py.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ protobuf>=3.0
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,34 @@
1
+ import setuptools
2
+
3
+ # Read the contents of your README file
4
+ with open("README.md", "r", encoding="utf-8") as fh:
5
+ long_description = fh.read()
6
+
7
+ setuptools.setup(
8
+ name="edidio_control_py",
9
+ version="0.0.1",
10
+ author="Michael Howes",
11
+ author_email="michael@creativelighting.com.au",
12
+ description="Python library for controlling the Control Freak eDIDIO S10 device.",
13
+ long_description=long_description,
14
+ long_description_content_type="text/markdown",
15
+ url="https://github.com/CreativeLightingAdmin/edidio_control_py",
16
+ packages=setuptools.find_packages(),
17
+ classifiers=[
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3.9",
20
+ "Programming Language :: Python :: 3.10",
21
+ "Programming Language :: Python :: 3.11",
22
+ "Programming Language :: Python :: 3.12",
23
+ "License :: OSI Approved :: MIT License",
24
+ "Operating System :: OS Independent",
25
+ "Intended Audience :: Developers",
26
+ "Topic :: Home Automation",
27
+ "Topic :: Software Development :: Libraries :: Python Modules",
28
+ "Framework :: AsyncIO",
29
+ ],
30
+ python_requires=">=3.9",
31
+ install_requires=[
32
+ "protobuf>=3.0"
33
+ ],
34
+ )