Skip to content

Commit

Permalink
v0.2.5 pip support
Browse files Browse the repository at this point in the history
  • Loading branch information
psychogenic committed Feb 16, 2024
1 parent 24c72d4 commit 2c68c84
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<module 'skip' from '/path/to/lib/python3.10/site-packages/skip/__init__.py'>
>>>
````



### 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:
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
]
Expand All @@ -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"
Expand Down

0 comments on commit 2c68c84

Please sign in to comment.