Python LT8900 via SPI

Check-in [d304e9e5ae]
Login
Overview
Comment:Converted to PyPI-compliant package
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d304e9e5aeb9cd7012b185246e22ac8aca4c51195fe9d36dda0628aed24bb6e1
User & Date: rkeene on 2020-04-28 21:14:41
Other Links: manifest | tags
Context
2020-04-29
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
19:02
Added README check-in: e411664b88 user: rkeene tags: trunk
Changes

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

1




__pycache__





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

Added LICENSE version [7d6468881a].







































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Copyright (c) 2020 Roy Keene

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Name change from __init__.py to lt8900_spi/__init__.py.

Added setup.py version [df9faf2f7a].



















































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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"],
	package_dir={"":"."},
	license="MIT License",
	classifiers=[
		"Programming Language :: Python :: 3",
		"License :: OSI Approved :: MIT License",
		"Operating System :: OS Independent",
	],
	python_requires='>=3.6',
	install_requires=['spidev>=3.0.0']
)