-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: rename pypi package to adam-ascii
- Loading branch information
1 parent
b63e05d
commit 28eb3d1
Showing
5 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# adam-modbus | ||
# adam-ascii | ||
|
||
[![PyPI version](https://badge.fury.io/py/adam-modbus.svg)](https://badge.fury.io/py/adam-modbus) | ||
[![PyPI version](https://badge.fury.io/py/adam-ascii.svg)](https://badge.fury.io/py/adam-ascii) | ||
|
||
stateless asyncio python interface for Advantech 6317 and 6052 modules. | ||
stateless asyncio python interface for Advantech 6317 and 6052 modules using the UDP ascii interface. | ||
|
||
for TCP modbus communication, see [tcp-modbus-aio](https://github.com/tutorintelligence/tcp-modbus-aio): this is probably a better idea for most ADAM use cases, as TCP is both more reliable and supports more devices. | ||
|
||
(note: this project was previously misnamed as `adam-modbus`, but in fact has never communicated via the modbus. whaddayaknow.) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tool.poetry] | ||
name = "adam-modbus" | ||
name = "adam-ascii" | ||
version = "0.3.1" | ||
description = "asyncio python interface for Advantech ADAM modules" | ||
authors = ["Josh Gruenstein <[email protected]>"] | ||
|
@@ -24,6 +24,6 @@ build-backend = "poetry.core.masonry.api" | |
style = "poetry_scripts:style" | ||
|
||
[tool.semantic_release] | ||
version_variables = ["adam_modbus/__init__.py:__version__"] | ||
version_variables = ["adam_ascii/__init__.py:__version__"] | ||
version_toml = ["pyproject.toml:tool.poetry.version"] | ||
build_command = "pip install poetry && poetry build" |