Skip to content

Commit 21fb561

Browse files
committed
comments and pyproject changes
1 parent 74a20e8 commit 21fb561

File tree

3 files changed

+54
-33
lines changed

3 files changed

+54
-33
lines changed

gpio_expander.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
1717
**Hardware:**
1818
19-
* `Texas Instrument PCA9555 <https://www.ti.com/lit/ds/symlink/pca9555.pdf>_`
20-
* `Texas Instrument PCA9535 <https://www.ti.com/lit/ds/symlink/pca9535.pdf>_`
2119
* `Texas Instrument PCA9534 <https://www.ti.com/lit/ds/symlink/pca9534.pdf>_`
22-
* `Texas Instrument TCA9535 <https://www.ti.com/lit/ds/symlink/tca9535.pdf>_`
20+
* `Texas Instrument PCA9535 <https://www.ti.com/lit/ds/symlink/pca9535.pdf>_`
21+
* `Texas Instrument PCA9555 <https://www.ti.com/lit/ds/symlink/pca9555.pdf>_`
2322
* `Texas Instrument TCA9534 <https://www.ti.com/lit/ds/symlink/tca9534.pdf>_`
24-
23+
* `Texas Instrument TCA9535 <https://www.ti.com/lit/ds/symlink/tca9535.pdf>_`
24+
* `Texas Instrument TCA9555 <https://www.ti.com/lit/ds/symlink/tca9555.pdf>_`
2525
2626
**Software and Dependencies:**
2727

poetry.lock

Lines changed: 38 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,23 @@
55
[tool.poetry]
66
name = "circuitpython_pca95xx"
77
version = "0.0.0"
8-
homepage = "https://github.com/gpongelli/CircuitPython_PCA95XX.git"
9-
description = "Utility methods to edit CIRO generated Aladdin Package, generating and adding help pages."
8+
homepage = "https://github.com/gpongelli/CircuitPython_gpio_expander.git"
9+
description = "CircuitPython helper library for gpio expanders (Texas Instrument PCA95xx and TCA95xx chips)."
1010
authors = ["Gabriele Pongelli <gabriele.pongelli@gmail.com>"]
11+
license = "MIT"
12+
keywords = ["adafruit", "blinka", "circuitpython", "micropython", "gpio_expander", "gpio", "expander", "PCA9534",
13+
"PCA9535", "PCA9555", "TCA9534", "TCA9535", "TCA9555"]
1114
readme = "README.rst"
1215
classifiers=[
13-
'Development Status :: 2 - Pre-Alpha',
14-
'Intended Audience :: Developers',
16+
"Development Status :: 3 - Alpha",
17+
"Intended Audience :: Developers",
1518
'Natural Language :: English',
19+
"Topic :: Software Development :: Libraries",
20+
"Topic :: System :: Hardware",
21+
"License :: OSI Approved :: MIT License",
1622
'Programming Language :: Python :: 3',
1723
'Programming Language :: Python :: 3.9',
18-
'Programming Language :: Python :: 3.10',
24+
'Programming Language :: Python :: 3.10'
1925
]
2026

2127

@@ -86,7 +92,7 @@
8692
name = "cz_conventional_commits"
8793
version = "0.0.0"
8894
version_files = [
89-
"pca95xx.py:__version__",
95+
"gpio_expander.py:__version__",
9096
"pyproject.toml:version"
9197
]
9298
gpg_sign = true

0 commit comments

Comments
 (0)