-
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.
- Loading branch information
1 parent
c388014
commit 41042fd
Showing
2 changed files
with
27 additions
and
3 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
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,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"] | ||
|