2022-04-07 21:03:53 +02:00
import setuptools
2022-07-07 22:16:10 +02:00
__version__ = " 0.1.6 "
__variant__ = " beta "
2022-04-07 21:03:53 +02:00
with open ( " README.md " , " r " ) as fh :
long_description = fh . read ( )
setuptools . setup (
2022-07-07 22:16:10 +02:00
name = " sbapp " ,
2022-04-07 21:03:53 +02:00
version = __version__ ,
author = " Mark Qvist " ,
author_email = " mark@unsigned.io " ,
description = " LXMF client for Android, Linux and macOS allowing you to communicate with people or LXMF-compatible systems over Reticulum networks using LoRa, Packet Radio, WiFi, I2P, or anything else Reticulum supports. " ,
long_description = long_description ,
long_description_content_type = " text/markdown " ,
url = " https://unsigned.io/sideband " ,
packages = setuptools . find_packages ( ) ,
classifiers = [
" Programming Language :: Python :: 3 " ,
" License :: Other/Proprietary License " ,
" Operating System :: OS Independent " ,
] ,
entry_points = {
' console_scripts ' : [
2022-07-07 22:16:10 +02:00
' sideband=sbapp:main.run ' ,
2022-04-07 21:03:53 +02:00
]
} ,
2022-07-07 22:16:10 +02:00
install_requires = [ ' rns>=0.3.9 ' , ' lxmf>=0.1.7 ' , ' kivy==2.1.0 ' ] ,
2022-04-07 21:03:53 +02:00
python_requires = ' >=3.6 ' ,
)