Python LT8900 via SPI

Check-in [bda28aae66]
Login
Overview
Comment:lt8900_spi v2.6
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | trunk | 2.6
Files: files | file ages | folders
SHA3-256: bda28aae665986a35aa647cf6c67c1b89db0d02c297860a369d11b34f71813f3
User & Date: rkeene on 2023-09-10 16:44:18
Other Links: manifest | tags
Context
2023-09-10
16:44
lt8900_spi v2.6 Leaf check-in: bda28aae66 user: rkeene tags: 2.6, trunk
2021-01-26
22:14
Increase delay and log initialization error check-in: 772747db6a user: rkeene tags: trunk
Changes

Modified setup.py from [a0c3a1889b] to [491fce9f76].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import setuptools

with open("README.md", "r") as fh:
	long_description = fh.read()

setuptools.setup(
	name="lt8900_spi", # Replace with your own username
	version="2.5",
	author="Roy Keene",
	author_email="pypi@rkeene.org",
	description="Python interface to an LT8900 connected via SPI",
	long_description=long_description,
	long_description_content_type="text/markdown",
	url="https://chiselapp.com/user/rkeene/repository/lt8900_spi/",
	packages=["lt8900_spi"],







|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import setuptools

with open("README.md", "r") as fh:
	long_description = fh.read()

setuptools.setup(
	name="lt8900_spi", # Replace with your own username
	version="2.6",
	author="Roy Keene",
	author_email="pypi@rkeene.org",
	description="Python interface to an LT8900 connected via SPI",
	long_description=long_description,
	long_description_content_type="text/markdown",
	url="https://chiselapp.com/user/rkeene/repository/lt8900_spi/",
	packages=["lt8900_spi"],