-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
30 lines (27 loc) · 1008 Bytes
/
setup.py
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
from setuptools import setup, find_packages
import magichue
setup(
name='python-magichue',
version=magichue.__version__,
url='https://github.com/namacha/python-magichue',
author=magichue.__author__,
author_email='[email protected]',
long_description_content_type='text/markdown',
description='A library to interface with Magichue(or Magichome)',
long_description=open('README.md').read(),
license=magichue.__license__,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Home Automation',
],
packages=find_packages(),
)