blob: 797381d2525ecc4bad968ef32812cfd8577adf84 [file] [log] [blame]
from setuptools import setup, find_packages
setup(
name='coral-cloudiot',
version='1.0',
description='Coral Cloud IoT API',
author='Coral Team',
author_email='coral-support@google.com',
url="https://coral.withgoogle.com/",
project_urls={
'Repo': 'https://coral.googlesource.com/coral-cloud/',
'Issues': 'https://github.com/google-coral/issues',
},
license='Apache 2',
packages=['coral.cloudiot'],
install_requires=[
'jwt',
'paho-mqtt',
'cryptoauthlib',
],
python_requires='>=3.5.3',
)