Overview
| Comment: | lt8900_spi v2.5 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk | 2.5 |
| Files: | files | file ages | folders |
| SHA3-256: |
42edc1a846b290725e56bc1f702d2d7e |
| User & Date: | rkeene on 2020-05-17 21:15:04.001 |
| Other Links: | manifest | tags |
Context
|
2020-08-27
| ||
| 17:07 | Power setting improvements check-in: b3c15d5abe user: rkeene tags: trunk | |
|
2020-05-17
| ||
| 21:15 | lt8900_spi v2.5 check-in: 42edc1a846 user: rkeene tags: 2.5, trunk | |
| 21:14 | Improved queuing and changing channel delay check-in: ef5b2dfe0c user: rkeene tags: trunk | |
Changes
Modified setup.py
from [3151b8c2df]
to [a0c3a1889b].
1 2 3 4 5 6 7 |
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="lt8900_spi", # Replace with your own username
| | | 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"],
|
| ︙ | ︙ |