forked from mayeranalytics/pySX127x
-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
executable file
·23 lines (21 loc) · 863 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pyLoRa",
version="0.3.1",
author="Rui Silva",
author_email="[email protected]",
description="(LoRa communication 868MHz VERSION) This is a python interface to the Semtech SX1276/7/8/9 long range, low power transceiver family.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rpsreal/pySX127x",
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 3",
"Natural Language :: Portuguese",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
),
)