Skip to content

Commit 986b5aa

Browse files
authored
V0.3 conda release bugfixes (#123)
* update pyproject.toml * fix typo in contributing.md
1 parent a81cce3 commit 986b5aa

File tree

4 files changed

+30
-28
lines changed

4 files changed

+30
-28
lines changed

CONTRIBUTING.md

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -8,50 +8,52 @@ All types of contributions are encouraged and valued.
88
>
99
> - Star the project
1010
> - Tweet about it or share in social media
11-
> - Create examples & refer this project in your project's readme. I can add your example in my [example repository](https://github.com/VigneshVSV/hololinked-examples) if its really helpful, including use cases in more sophisticated integrations
11+
> - Create examples & refer this project in your project's readme. I can add your example in my [example repository](https://github.com/hololinked-dev/hololinked-examples) if its really helpful, including use cases in more sophisticated integrations
1212
> - Mention the project at local meetups/conferences and tell your friends/colleagues
1313
> - Donate to cover the costs of maintaining it
1414
15+
## I Want To Contribute
16+
17+
> ### Legal Notice <!-- omit in toc -->
18+
>
19+
> When contributing to this project, you must agree that you have authored 100% of the content or that you have the necessary rights to the content, and agree to release it under the license of the project.
20+
21+
If you want to tackle any issues, un-existing features, please do have a look at [good-first-issues](https://github.com/hololinked-dev/hololinked/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22). Issues are separated by (perceived-) level of difficulty (`beginner`, `intermediate`) and type of contribution (`bug`, `feature`, `documentation` etc.). If you wish to propose a feature or bugfix, we could discuss it on discord/email (links in README) before you start working on it.
22+
23+
Partial contributions are also taken if its easier to continue working on it. In this case, you can submit your fork to merge into a separate branch until it meets the required standards for release.
24+
25+
There are also other repositories which can use your skills:
26+
27+
- An [admin client](https://github.com/hololinked-dev/thing-control-panel) in react
28+
- [Documentation](https://github.com/hololinked-dev/docs) in mkdocs which needs significant improvement in beginner level docs which may teach people concepts of data acquisition or IoT, Docstring or API documentation of this repository itself
29+
- [Examples](https://github.com/hololinked-dev/hololinked-examples) in nodeJS, Dashboard/PyQt GUIs or server implementations using this package. Hardware implementations of unexisting examples are also welcome, I can open a directory where people can search for code based on hardware and just download your code.
30+
1531
## I Have a Question
1632

17-
Do feel free to reach out to me at [email protected] or in discord. I will try my very best to respond.
33+
Do feel free to reach out to me at email or in discord (links in README). I will try my very best to respond.
1834

19-
Nevertheless, one may also refer the available how-to section of the [Documentation](https://hololinked.readthedocs.io/en/latest/index.html).
20-
If the documentation is insufficient for any reason including being poorly documented, one may open a new discussion in the [Q&A](https://github.com/VigneshVSV/hololinked/discussions/categories/q-a) section of GitHub discussions.
35+
Nevertheless, one may also refer the available how-to section of the [Documentation](https://docs.hololinked.dev/beginners-guide/articles/servers/).
36+
If the documentation is insufficient for any reason including being poorly documented, one may open a new discussion in the [Q&A](https://github.com/hololinked-dev/hololinked/discussions/categories/q-a) section of GitHub discussions.
2137

2238
For questions related to workings of HTTP, JSON schema, basic concepts of python like descriptors, decorators etc., it is also advisable to search the internet for answers first.
2339
For generic questions related to web of things standards or its ideas, it is recommended to join web of things [discord](https://discord.com/invite/RJNYJsEgnb) group and [community](https://www.w3.org/community/wot/) group.
2440

25-
If you believe your question might also be a bug, you might want to search for existing [Issues](https://github.com/VigneshVSV/hololinked/issues) that might help you.
41+
If you believe your question might also be a bug, you might want to search for existing [Issues](https://github.com/hololinked-dev/hololinked/issues) that might help you.
2642
In case you have found a suitable issue and still need clarification, you can write your question in this issue. If an issue is not found:
2743

28-
- Open an [Issue](https://github.com/VigneshVSV/hololinked/issues/new).
44+
- Open an [Issue](https://github.com/hololinked-dev/hololinked/issues/new).
2945
- Provide as much context as you can about what you're running into.
3046
- Stack trace (Traceback)
31-
- OS, Platform and Version (Windows, Linux, macOS, x86, ARM)
47+
- OS, Platform and Version (Windows, Linux, macOS)
3248
- Version of python
3349
- Possibly your input and the output
3450
- Can you reliably reproduce the issue?
3551

36-
One may submit a bug report at any level of information, especially if you reached out to me at my email upfront. If you also know how to fix it, lets discuss, once the idea is clear, you can fork and make a pull request.
52+
One may submit a bug report at any level of information, especially if you reached out to me upfront. If you also know how to fix it, lets discuss, once the idea is clear, you can fork and make a pull request.
3753

3854
Otherwise, I will then take care of the issue as soon as possible.
3955

40-
> You must never report security related issues, vulnerabilities or bugs including sensitive information to the issue tracker, or elsewhere in public. Instead sensitive bugs must be sent by email to [email protected].
41-
42-
## I Want To Contribute
43-
44-
> ### Legal Notice <!-- omit in toc -->
45-
>
46-
> When contributing to this project, you must agree that you have authored 100% of the content or that you have the necessary rights to the content. For example, you copied code from projects with MIT/BSD License. Content from GPL-related licenses may be maintained in a separate repository as an add-on.
47-
48-
Developers are always welcome to contribute to the code base. If you want to tackle any issues, un-existing features, let me know (at my email), I can create some open issues and features which I was never able to solve or did not have the time. You can also suggest what else can be contributed functionally, conceptually or also simply code-refactoring.
49-
50-
There are also other repositories which can use your skills:
51-
52-
- An [admin client](https://github.com/VigneshVSV/thing-control-panel) in react
53-
- [Documentation](https://github.com/VigneshVSV/hololinked-docs) in sphinx which needs significant improvement in How-To's, beginner level docs which may teach people concepts of data acquisition or IoT, Docstring or API documentation of this repository itself
54-
- [Examples](https://github.com/VigneshVSV/hololinked-examples) in nodeJS, Dashboard/PyQt GUIs or server implementations using this package. Hardware implementations of unexisting examples are also welcome, I can open a directory where people can search for code based on hardware and just download your code.
56+
> You must never report security related issues, vulnerabilities or bugs including sensitive information to the issue tracker, or elsewhere in public. Instead sensitive bugs must be sent by email to [email protected].
5557
5658
## Git Branching
5759

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
`hololinked` is a beginner-friendly pythonic tool suited for instrumentation control and data acquisition over network (IoT & SCADA).
66

7-
As a novice, you have a requirement to control and capture data from your hardware, say in your electronics or science lab, and you want to show the data in a dashboard, provide a PyQt GUI, run automated scripts, `hololinked` can help. Even for isolated desktop applications or a small setup without networking, one can still separate the concerns of the tools that interact with the hardware & the hardware itself.
7+
As a novice, you have a requirement to control and capture data from your hardware, say in your electronics or science lab, and you want to show the data in a dashboard, provide a PyQt GUI or run automated scripts, `hololinked` can help. Even for isolated desktop applications or a small setup without networking, one can still separate the concerns of the tools that interact with the hardware & the hardware itself.
88

99
If you are a web developer or an industry professional looking for a web standards compatible (high-speed) IoT runtime, `hololinked` can be a decent choice. By conforming to [W3C Web of Things](https://www.w3.org/WoT/), one can expect a consistent API and flexible bidirectional message flow to interact with your devices, irrespective of the underlying protocol. Currently HTTP & ZMQ are supported. See [Use Cases Table](#use-cases-table).
1010

@@ -617,7 +617,7 @@ Some other features that are currently supported:
617617
<code>readallproperties</code>,
618618
<code>writeallproperties</code>
619619
<br>
620-
properties and actions can be operated in a oneway and noblock manner as well
620+
properties and actions can be operated in a oneway and no-block manner (issue and query later format) as well
621621
</td>
622622
</tr>
623623
<tr>

license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176

177177
END OF TERMS AND CONDITIONS
178178

179-
Copyright 2025 Vignesh Venkatasubramanian Vaidyanathan
179+
Copyright 2025 Vignesh Venkatasubramanian Vaidyanathan, hololinked Contributors
180180

181181
Licensed under the Apache License, Version 2.0 (the "License");
182182
you may not use this file except in compliance with the License.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ authors = [
1111
description = "A ZMQ-based protocol-agnostic object oriented RPC toolkit primarily focussed for instrumentation control, data acquisition or IoT, however can be used for controlling generic python objects."
1212
readme = "README.md"
1313
requires-python = ">=3.11"
14-
license = {text = "BSD-3-Clause"}
14+
license = "Apache-2.0"
15+
license-files = ["licenses/*"]
1516
classifiers = [
1617
"Programming Language :: Python :: 3",
17-
"License :: OSI Approved :: BSD License",
1818
"Operating System :: OS Independent",
1919
"Intended Audience :: Information Technology",
2020
"Intended Audience :: Science/Research",

0 commit comments

Comments
 (0)