File: setup.py

package info (click to toggle)
millheater 0.15.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 140 kB
  • sloc: python: 764; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 924 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
24
25
26
27
28
from setuptools import setup

version_ns = {}
with open("mill/consts.py", "r", encoding="utf-8") as f:
    exec(f.read(), version_ns)
__version__ = version_ns["__version__"]

setup(
    name="millheater",
    packages=["mill"],
    install_requires=["aiohttp>=3.7.4,<4", "PyJWT>=2"],
    version=__version__,
    description="A python3 library to communicate with Mill",
    long_description="A python3 library to communicate with Mill",
    python_requires=">=3.10",
    author="Daniel Hjelseth Hoyer",
    author_email="mail@dahoiv.net",
    url="https://github.com/Danielhiversen/pymill",
    license="MIT",
    classifiers=[
        "Intended Audience :: Developers",
        "Operating System :: OS Independent",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Topic :: Home Automation",
        "Topic :: Software Development :: Libraries :: Python Modules",
    ],
)