forked from ianlevesque/smartblinds-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 798 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='smartblinds_client',
version='0.6',
description='Unofficial client for the MySmartBlinds Smart Bridge',
long_description=readme(),
url='http://github.com/ianlevesque/smartblinds-client',
author='Ian Levesque',
author_email='[email protected]',
packages=['smartblinds_client'],
install_requires=['auth0-python', 'requests'],
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
zip_safe=False)