forked from digidotcom/xbee-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (48 loc) · 1.77 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# Copyright (c) 2017, 2018, Digi International Inc. All Rights Reserved.
from setuptools import setup, find_packages
from codecs import open
from os import path
DEPENDENCIES = (
'pyserial>=3',
'ipaddress>=1',
'enum34>=1',
'futures>=3'
)
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ngcp-xbee',
version='1.3',
description='Digi XBee Python library, compatible with Python 2',
long_description=long_description,
url='https://github.com/tianatonnu/python-xbee.git',
author='Tiana Ton Nu, Digi International Inc.',
author_email='[email protected], [email protected]',
packages=find_packages(exclude=('unit_test*', 'functional_tests*', 'demos*')),
keywords=['xbee', 'IOT', 'wireless', 'radio frequency'],
license='Mozilla Public License 2.0 (MPL 2.0)',
python_requires='>=2',
install_requires=[
'pyserial>=3',
'ipaddress>=1',
'enum34>=1',
'futures>=3'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: End Users/Desktop',
'Topic :: Software Development :: Libraries',
'Topic :: Home Automation',
'Topic :: Games/Entertainment',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Programming Language :: Python :: 2',
'Operating System :: OS Independent',
],
)