Overview
| Comment: | lt8900_spi v2.3 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk | 2.3 |
| Files: | files | file ages | folders |
| SHA3-256: |
049d34a933899a1cb7e5ae00c135f3c4 |
| User & Date: | rkeene on 2020-05-02 15:12:56.909 |
| Other Links: | manifest | tags |
Context
|
2020-05-05
| ||
| 19:51 | Stability improvements check-in: ab87285298 user: rkeene tags: trunk | |
|
2020-05-02
| ||
| 15:12 | lt8900_spi v2.3 check-in: 049d34a933 user: rkeene tags: 2.3, trunk | |
| 15:10 | Substantial improvement to software queue management check-in: 5f845c3e3c user: rkeene tags: trunk | |
Changes
Modified setup.py
from [dcec25f662]
to [77e0a12007].
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.3",
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"],
|
| ︙ | ︙ |