-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (28 loc) · 1.45 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-e220-opi",
package_dir={'': 'src'},
py_modules=["lora_e220", "lora_e220_constants", "lora_e220_operation_constant"],
version="0.0.2",
description="LoRa EBYTE E220 device library complete and tested with Arduino, esp8266, esp32, STM32, Orange Pi and Raspberry Pi Pico. LLCC68",
long_description="Ebyte E220 LoRa (Long Range) library device very cheap and very long range (from 5Km to 10Km). Arduino LoRa EBYTE E220 device library complete and tested with Arduino, esp8266, esp32, STM32, Orange Pi and Raspberry Pi Pico. LLCC68",
keywords="LoRa, UART, EByte, esp32, esp8266, stm32, SAMD, Arduino, Raspberry Pi Pico, Raspberry Pi, Orange Pi",
url="https://github.com/xreef/EByte_LoRa_E220_python_orangepi_library",
author="Renzo Mischianti",
author_email="renzo.mischianti@gmail.com",
maintainer="Renzo Mischianti",
maintainer_email="renzo.mischianti@gmail.com",
license="MIT",
install_requires=[],
project_urls={
'Documentation': 'https://www.mischianti.org/category/my-libraries/lora-e220-llcc68-devices/',
'Documentazione': 'https://www.mischianti.org/it/category/le-mie-librerie/dispositivi-lora-e220-llcc68/',
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: Implementation :: Orange Pi",
"License :: OSI Approved :: MIT License",
],
)