Python LT8900 via SPI

Check-in [ba248e2cfc]
Login

Check-in [ba248e2cfc]

Overview
Comment:lt8900_spi v1.0
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk | 1.0
Files: files | file ages | folders
SHA3-256: ba248e2cfca262ffa4271b43386c9975d31dbc4785cf68d674f6cc0105885d72
User & Date: rkeene on 2020-04-29 00:02:58.901
Other Links: manifest | tags
Context
2020-04-29
00:37
Rename class to upper-case check-in: c9419b56ad user: rkeene tags: trunk
00:02
lt8900_spi v1.0 check-in: ba248e2cfc user: rkeene tags: 1.0, trunk
00:00
Temporary set version to 0.9 to verify upload check-in: 2b5fea74f1 user: rkeene tags: trunk
Changes
Modified setup.py from [f623d0d063] to [494545e590].
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-rkeene", # Replace with your own username
	version="0.9",
	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="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"],