File: setup.py

package info (click to toggle)
pyxiaomigateway 0.14.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 132 kB
  • sloc: python: 662; makefile: 7
file content (20 lines) | stat: -rw-r--r-- 696 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup

setup(
    name = 'PyXiaomiGateway',
    packages = ['xiaomi_gateway'],
    install_requires=['cryptography>=2.1.1'],
    version = '0.14.3',
    description = 'A library to communicate with the Xiaomi Gateway',
    author='Daniel Hjelseth Høyer',
    url='https://github.com/Danielhiversen/PyXiaomiGateway/',
    classifiers=[
        'Development Status :: 3 - Alpha',
        'Environment :: Other Environment',
        'Intended Audience :: Developers',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Topic :: Home Automation',
        'Topic :: Software Development :: Libraries :: Python Modules'
        ]
)