omnitag 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.
- omnitag-0.0.1/PKG-INFO +37 -0
- omnitag-0.0.1/README.md +17 -0
- omnitag-0.0.1/pyproject.toml +30 -0
- omnitag-0.0.1/src/omnitag/__init__.py +11 -0
omnitag-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: omnitag
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: OmniTag RFID — a multi-vendor RFID reader layer (one interface for every reader). Placeholder release; under active development.
|
|
5
|
+
Project-URL: Homepage, https://github.com/kyronfeast/omnitag
|
|
6
|
+
Project-URL: Repository, https://github.com/kyronfeast/omnitag
|
|
7
|
+
Author: kyronfeast
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
Keywords: asyncio,impinj,llrp,rain-rfid,reader,rfid
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Framework :: AsyncIO
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
17
|
+
Classifier: Topic :: System :: Hardware
|
|
18
|
+
Requires-Python: >=3.11
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
|
|
21
|
+
# OmniTag RFID
|
|
22
|
+
|
|
23
|
+
**One interface for every RFID reader — any reader, any protocol, one normalized tag stream.**
|
|
24
|
+
|
|
25
|
+
OmniTag RFID is a multi-vendor reader layer built on top of
|
|
26
|
+
[llrpkit](https://pypi.org/project/llrpkit/) (the LLRP driver), with a pluggable
|
|
27
|
+
driver abstraction so readers that don't speak LLRP — proprietary Impinj-E710 OEM
|
|
28
|
+
modules and others — can join the same fleet, feed the same ignore policies, and
|
|
29
|
+
appear on the same dashboard.
|
|
30
|
+
|
|
31
|
+
> 🚧 **Placeholder release.** This `0.0.1` reserves the name while OmniTag is under
|
|
32
|
+
> active development. Watch [github.com/kyronfeast/omnitag](https://github.com/kyronfeast/omnitag)
|
|
33
|
+
> for the first working release.
|
|
34
|
+
|
|
35
|
+
## License
|
|
36
|
+
|
|
37
|
+
MIT
|
omnitag-0.0.1/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# OmniTag RFID
|
|
2
|
+
|
|
3
|
+
**One interface for every RFID reader — any reader, any protocol, one normalized tag stream.**
|
|
4
|
+
|
|
5
|
+
OmniTag RFID is a multi-vendor reader layer built on top of
|
|
6
|
+
[llrpkit](https://pypi.org/project/llrpkit/) (the LLRP driver), with a pluggable
|
|
7
|
+
driver abstraction so readers that don't speak LLRP — proprietary Impinj-E710 OEM
|
|
8
|
+
modules and others — can join the same fleet, feed the same ignore policies, and
|
|
9
|
+
appear on the same dashboard.
|
|
10
|
+
|
|
11
|
+
> 🚧 **Placeholder release.** This `0.0.1` reserves the name while OmniTag is under
|
|
12
|
+
> active development. Watch [github.com/kyronfeast/omnitag](https://github.com/kyronfeast/omnitag)
|
|
13
|
+
> for the first working release.
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
MIT
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling>=1.26"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "omnitag"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "OmniTag RFID — a multi-vendor RFID reader layer (one interface for every reader). Placeholder release; under active development."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [{ name = "kyronfeast" }]
|
|
13
|
+
keywords = ["rfid", "rain-rfid", "llrp", "impinj", "reader", "asyncio"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
21
|
+
"Topic :: System :: Hardware",
|
|
22
|
+
"Framework :: AsyncIO",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
Homepage = "https://github.com/kyronfeast/omnitag"
|
|
27
|
+
Repository = "https://github.com/kyronfeast/omnitag"
|
|
28
|
+
|
|
29
|
+
[tool.hatch.build.targets.wheel]
|
|
30
|
+
packages = ["src/omnitag"]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"""OmniTag RFID — a multi-vendor RFID reader layer.
|
|
2
|
+
|
|
3
|
+
One interface for every reader: any RFID reader, any protocol, one normalized
|
|
4
|
+
tag stream. Built on top of llrpkit (the LLRP driver) with a pluggable driver
|
|
5
|
+
abstraction for other reader families.
|
|
6
|
+
|
|
7
|
+
This is a placeholder release reserving the name while the project is built.
|
|
8
|
+
See https://github.com/kyronfeast/omnitag.
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
__version__ = "0.0.1"
|