21 lines
514 B
TOML
21 lines
514 B
TOML
[project]
|
|
name = "lcr-connector"
|
|
version = "1.0.0"
|
|
description = "Get the resistor, capacitor, or inductor circuit which has the closest value for your given value within at most 3 devices."
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "yyc12345", email = "yyc12321@outlook.com" }
|
|
]
|
|
requires-python = ">=3.11"
|
|
classifiers = [
|
|
"Private :: Do Not Upload",
|
|
]
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
lcr-connector = "lcr_connector:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.8.0,<0.9"]
|
|
build-backend = "uv_build"
|