forked from blinker-iot/blinker-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.16 KB
/
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
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='Blinker',
version='0.2.0',
author='i3water',
author_email='[email protected]',
description='Blinker library in python',
long_description=open('README.md').read(),
license='MIT',
url='https://github.com/blinker-iot/blinker-py',
packages=['Blinker', 'BlinkerAdapters', 'BlinkerUtility'],
# package_dir={'Blinker':'', 'BlinkerAdapters':'', 'BlinkerUtility':''},
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'SimpleWebSocketServer',
'zeroconf==0.26.3',
'paho-mqtt',
'requests',
'dbus-python',
'pygobject',
'demjson',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: IoT device',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: IoT :: Libraries :: Python Modules',
]
)