File: setup.py

package info (click to toggle)
ultraheat-api 0.5.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 144 kB
  • sloc: python: 424; makefile: 7; sh: 5
file content (23 lines) | stat: -rw-r--r-- 623 bytes parent folder | download
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,
)