File: setup.py

package info (click to toggle)
pysmappee 0.2.29-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 176 kB
  • sloc: python: 1,438; makefile: 7
file content (31 lines) | stat: -rw-r--r-- 894 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
29
30
31
import setuptools

with open("README.md", "r") as fh:
    long_description = fh.read()

setuptools.setup(
    name="pysmappee",
    version="0.2.29",
    author="Smappee",
    author_email="support@smappee.com",
    description="Offical Smappee dev API and MQTT python wrapper",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/smappee/pysmappee",
    packages=setuptools.find_packages(exclude=['test']),
    license='MIT',
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    python_requires='>=3.7',
    install_requires=[
        "cachetools>=4.0.0",
        "paho-mqtt>=1.5.0",
        "pytz>=2019.3",
        "requests>=2.23.0",
        "requests-oauthlib>=1.3.0",
        "schedule>=1.1.0",
    ],
)