forked from eclipse-iofog/iofog-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1.12 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
#********************************************************************************
# Copyright (c) 2018 Edgeworx, Inc.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License v. 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0
#
# SPDX-License-Identifier: EPL-2.0
#********************************************************************************
from distutils.core import setup
setup(
name='iofog-python-sdk',
version='1.0.0',
project_urls={
'Documentation': 'https://github.com/ioFog/iofog-python-sdk/blob/master/README.md',
'Source': 'https://github.com/ioFog/iofog-python-sdk.git',
'Tracker': 'https://github.com/ioFog/iofog-python-sdk/issues',
'Eclipse ioFog': 'http://iofog.org'
},
packages=['iofog_python_sdk'],
url='https://github.com/ioFog/iofog-python-sdk',
license='EPL-2.0',
author='Eclipse ioFog',
author_email='[email protected]',
description='Native python SDK for Eclipse ioFog development.',
requires=['ws4py'],
keywords='iofog IoT Eclipse fog computing edgeworx',
)