-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (28 loc) · 1.28 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
import sys
sys.path.pop(0)
from setuptools import setup
setup(
name="ebyte-lora-e22-rpi",
package_dir={'': 'src'},
py_modules=["lora_e22", "lora_e22_constants", "lora_e22_operation_constant"],
version="0.0.4",
description="RaspberryPi LoRa EBYTE E22 device library complete and tested. sx1262/sx1268",
long_description="RaspberryPi Ebyte E22 LoRa (Long Range) library device very cheap and very long range (from 4Km to 10Km). LoRa EBYTE E22 device library complete and tested. sx1262/sx1268",
keywords="LoRa, UART, EByte, RaspberryPi,sx1262, sx1268, e22",
url="https://github.com/xreef/EByte_LoRa_E22_raspberrypi_library",
author="Renzo Mischianti",
author_email="[email protected]",
maintainer="Renzo Mischianti",
maintainer_email="[email protected]",
license="MIT",
install_requires=["RPi", "pyserial", "time", "re"],
project_urls={
'Documentation': 'https://www.mischianti.org/category/my-libraries/ebyte-lora-e22-devices/',
'Documentazione': 'https://www.mischianti.org/it/category/le-mie-librerie/dispositivi-ebyte-lora-e22/',
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
],
)