2020-04-27 11:33:26 +00:00
|
|
|
import setuptools
|
|
|
|
|
2021-08-19 12:10:37 +00:00
|
|
|
exec(open("RNS/_version.py", "r").read())
|
|
|
|
|
2020-04-27 11:33:26 +00:00
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="rns",
|
2021-08-19 12:10:37 +00:00
|
|
|
version=__version__,
|
2020-04-27 11:33:26 +00:00
|
|
|
author="Mark Qvist",
|
|
|
|
author_email="mark@unsigned.io",
|
|
|
|
description="Self-configuring, encrypted and resilient mesh networking stack for LoRa, packet radio, WiFi and everything in between",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="https://github.com/markqvist/reticulum",
|
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
2021-09-24 09:21:08 +00:00
|
|
|
entry_points= {
|
|
|
|
'console_scripts': [
|
|
|
|
'rnsd=RNS.Utilities.rnsd:main',
|
2021-09-25 09:03:43 +00:00
|
|
|
'rnstatus=RNS.Utilities.rnstatus:main',
|
2021-09-24 12:15:15 +00:00
|
|
|
'rnprobe=RNS.Utilities.rnprobe:main',
|
2021-09-24 09:21:08 +00:00
|
|
|
'rnpath=RNS.Utilities.rnpath:main',
|
|
|
|
|
|
|
|
]
|
|
|
|
},
|
2021-09-11 14:03:35 +00:00
|
|
|
install_requires=['cryptography>=3.4.7', 'pyserial', 'netifaces>=0.10.4'],
|
2021-08-28 18:10:00 +00:00
|
|
|
python_requires='>=3.6',
|
2021-09-05 02:58:42 +00:00
|
|
|
)
|