forked from Danielhiversen/PyXiaomiGateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 694 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 694 Bytes
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.12.4',
description = 'A library to communicate with the Xiaomi Gateway',
author='Daniel Hoyer Iversen',
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'
]
)