File: setup.py

package info (click to toggle)
python-fluss-api 0.1.9.20-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 136 kB
  • sloc: python: 189; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 563 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages

setup(
    name="fluss_api",
    version="0.1.9.12",
    packages=find_packages(include=["fluss_api", "fluss_api.*"]),
    install_requires=[
        "aiohttp>=3.7.0",
    ],
    author="Marcello Jardim",
    author_email="marcello@fluss.io",
    description='A library to integrate the Fluss API into Home Assistant',
    classifiers=[
        'Programming Language :: Python :: 3',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
    ],
    python_requires='>=3.10',
)