Python LT8900 via SPI

Check-in [5fd146a915]
Login
Overview
Comment:lt8900_spi v2.0
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | 2.0
Files: files | file ages | folders
SHA3-256: 5fd146a915688ace9f39d5c3559628cbfc630f93ff14f0d17bcc4aaadc44c0d4
User & Date: rkeene on 2020-04-29 00:38:07
Other Links: manifest | tags
Context
2020-04-29
00:50
Made logging configurable check-in: c40c4d5a6c user: rkeene tags: trunk
00:38
lt8900_spi v2.0 check-in: 5fd146a915 user: rkeene tags: 2.0, trunk
00:37
Rename class to upper-case check-in: c9419b56ad user: rkeene tags: trunk
Changes

Modified setup.py from [494545e590] to [8c3276d493].

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="1.0",
	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.0",
	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"],