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