From 2c68c84e987028bbcf6e02c9405eadd90cefdc03 Mon Sep 17 00:00:00 2001 From: Pat Deegan Date: Thu, 15 Feb 2024 20:06:07 -0500 Subject: [PATCH] v0.2.5 pip support --- README.md | 22 ++++++++++++++++++++++ pyproject.toml | 7 +++++-- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2a421a4..28df487 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,28 @@ efficient and enjoyable. * Lots of REPL-friendly features, so you can see at a glance what an element is, access it by name (e.g. *schematic.symbol.R14.dnp*), use **TAB-completion** +### Installation + +Get a release here or just use pip! + +``` +$ pip install kicad-skip + +Downloading kicad_skip-0.2.5-py3-none-any.whl (62 kB) + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.8/62.8 kB 3.9 MB/s eta 0:00:00 +Installing collected packages: kicad-skip +Successfully installed kicad-skip-0.2.5 + +$ python +Python 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0] on linux +>>> import skip +>>> skip + +>>> +```` + + + ### Overview and Walk-through video I've put out an intro video where I walk through some REPL usage and create a LED array generator. To see that click on: diff --git a/pyproject.toml b/pyproject.toml index 8067899..b8c23c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,8 +3,8 @@ requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" [project] -name = "kicad-skip_psychogenic" -version = "0.2.2" +name = "kicad-skip" +version = "0.2.5" authors = [ { name="Pat Deegan" }, ] @@ -16,6 +16,9 @@ classifiers = [ "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", "Operating System :: OS Independent", ] +dependencies = [ + 'sexpdata >= 0.0.3', +] [project.urls] Homepage = "https://github.com/psychogenic/kicad-skip"