Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
rsnodgrass committed Jan 29, 2024
1 parent c388014 commit 41042fd
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
# separate terms of service, privacy policy, and support
# documentation.


# See Alos:
# https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/

name: Upload Python Package

on:
Expand Down
26 changes: 23 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,38 @@
#[project]
[project]
name = "pyavcontrol"
version = "0.1.0"
requires-python = ">=3.10"
description = "Python Control of Audio/Visual Equipment via RS232/IP"
readme = "README.md"
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
]
authors = [ { name="Ryan Snodgrass", email="[email protected]" } ]

[tool.poetry]
name = "pyavcontrol"
version = "0.1.0"
description = "Python Control of RS232/IP Audio/Visual Equipment"
description = "Python Control of Audio/Visual Equipment via RS232/IP"
readme = "README.md"
license = "LICENSE"
authors = [ "Ryan Snodgrass <[email protected]>" ]


[tool.poetry.dependencies]
python = "^3.10"
pyserial = "^3.5"
pyserial-asyncio = "^0.6"
ratelimit = "^2.2.1"
pyyaml = "^6.0.1"

[tool.poetry.group.dev.dependencies]
coloredlogs = "^15.0.1"
pytest = "^8.0.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit 41042fd

Please sign in to comment.