Add PyPI classifiers, keywords, and project URLs

This commit is contained in:
Ryan Malloy 2026-02-13 03:08:52 -07:00
parent c2197f6fe6
commit ad03798b4d

View File

@ -10,12 +10,29 @@ authors = [{name = "Ryan Malloy", email = "ryan@supported.systems"}]
requires-python = ">=3.11" requires-python = ">=3.11"
license = {text = "MIT"} license = {text = "MIT"}
readme = "README.md" readme = "README.md"
keywords = ["spice", "wireviz", "ltspice", "netlist", "wiring", "harness", "electronics", "eda"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
dependencies = [ dependencies = [
"pyyaml>=6.0", "pyyaml>=6.0",
"click>=8.0", "click>=8.0",
"pydantic>=2.0", "pydantic>=2.0",
] ]
[project.urls]
Homepage = "https://github.com/ryanmalloy/spice2wireviz"
Repository = "https://github.com/ryanmalloy/spice2wireviz"
Issues = "https://github.com/ryanmalloy/spice2wireviz/issues"
[project.optional-dependencies] [project.optional-dependencies]
asc = ["spicelib>=1.4.9"] asc = ["spicelib>=1.4.9"]
dev = ["ruff", "pytest", "pytest-cov"] dev = ["ruff", "pytest", "pytest-cov"]