2015-05-26 20:06:59 +00:00
|
|
|
# Copyright (c) 2015 Nicolas JOUANIN
|
|
|
|
#
|
2015-06-30 11:21:58 +00:00
|
|
|
# See the file license.txt for copying permission.
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
from hbmqtt.version import get_version
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="hbmqtt",
|
|
|
|
version=get_version(),
|
|
|
|
description="HBMQTT - HomeBrew MQTT\nclient/brocker using Python 3.4 asyncio library",
|
|
|
|
author="Nicolas Jouanin",
|
|
|
|
author_email='nico@beerfactory.org',
|
|
|
|
url="https://github.com/beerfactory/hbmqtt",
|
|
|
|
license='MIT',
|
|
|
|
packages=find_packages(exclude=['tests']),
|
2015-08-13 19:08:45 +00:00
|
|
|
install_requires=[
|
|
|
|
'transitions==0.2.5',
|
|
|
|
'blinker',
|
|
|
|
'websockets'],
|
2015-06-30 11:21:58 +00:00
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Operating System :: MacOS',
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Topic :: Communications',
|
|
|
|
'Topic :: Internet'
|
|
|
|
]
|
|
|
|
)
|