45 lines
1.5 KiB
Python
45 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""Setup for rn2482lora module."""
|
|
from setuptools import setup
|
|
|
|
__author__ = "Sven Sager"
|
|
__copyright__ = "Copyright (C) 2019 Sven Sager"
|
|
__license__ = "LGPLv3"
|
|
|
|
setup(
|
|
version='0.1.0',
|
|
|
|
packages=['rn2483lora'],
|
|
python_requires="~=3.4",
|
|
install_requires=["pyserial"],
|
|
keywords="lora network lorawan iot",
|
|
|
|
# Additional meta-data
|
|
name='rn2483lora',
|
|
author='Sven Sager',
|
|
author_email='akira@narux.de',
|
|
maintainer="Sven Sager",
|
|
maintainer_email="akira@narux.de",
|
|
url='https://narux.de',
|
|
description='Wraper module for microchips LoRaWAN chip RN2483',
|
|
long_description="Add LoRaWAN capabilities to your python program. This module will help you "
|
|
"to use the RN2483 chip of microchips. It will manage the serial communication "
|
|
"and send data over LoRaWAN.",
|
|
download_url="",
|
|
classifiers=[
|
|
"Development Status :: 1 - Planning",
|
|
# "Development Status :: 2 - Pre-Alpha",
|
|
# "Development Status :: 3 - Alpha",
|
|
# "Development Status :: 4 - Beta",
|
|
# "Development Status :: 5 - Production/Stable",
|
|
"Environment :: Console",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: System :: Networking",
|
|
],
|
|
license='LGPLv3',
|
|
)
|