24 lines
480 B
TOML
24 lines
480 B
TOML
[tool.poetry]
|
|
name = "ipowerswitch"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Correl Roush <correl@gmail.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
requests = "^2.32.3"
|
|
bs4 = "^0.0.2"
|
|
typer = "^0.13.0"
|
|
yarl = "^1.17.1"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^24.10.0"
|
|
types-requests = "^2.32.0.20241016"
|
|
|
|
[tool.poetry.scripts]
|
|
ips = "ipowerswitch:app"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|