1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
from setuptools import setup
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="ultraheat_api",
version="0.5.1",
description="Reading usage data from the Landys & Gyr Ultraheat heat meter unit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/vpathuis/ultraheat",
author="vpathuis",
license="MIT",
packages=["ultraheat_api"],
install_requires=[
"pyserial",
],
zip_safe=False,
)
|