Python LT8900 via SPI

Check-in [2b5fea74f1]
Login
Overview
Comment:Temporary set version to 0.9 to verify upload
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 2b5fea74f140a04fe17f28f95e378e0161ca146ba4c50bc0a2ef5526a74964a8
User & Date: rkeene on 2020-04-29 00:00:04
Other Links: manifest | tags
Context
2020-04-29
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
2020-04-28
21:14
Converted to PyPI-compliant package check-in: d304e9e5ae user: rkeene tags: trunk
Changes

Modified .fossil-settings/ignore-glob from [34265f5143] to [230cbd18e4].

1
2
3
4
5
__pycache__
dist
*.egg-info
build/bdist.*
build/lib/*
|




1
2
3
4
5
lt8900_spi/__pycache__
dist
*.egg-info
build/bdist.*
build/lib/*

Modified setup.py from [df9faf2f7a] to [f623d0d063].

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