mirror of
https://github.com/markqvist/Sideband.git
synced 2025-05-13 11:52:19 -04:00
Initial commit
This commit is contained in:
parent
765f72a3ab
commit
70e49c8e6f
13 changed files with 2827 additions and 0 deletions
30
setup.py
Normal file
30
setup.py
Normal file
|
@ -0,0 +1,30 @@
|
|||
import setuptools
|
||||
|
||||
exec(open("sideband/_version.py", "r").read())
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setuptools.setup(
|
||||
name="sideband",
|
||||
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': [
|
||||
'sideband=main:main',
|
||||
]
|
||||
},
|
||||
install_requires=['lxmf'],
|
||||
python_requires='>=3.6',
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue