Added automatic path requests. Bumped version to 0.0.4.

This commit is contained in:
Mark Qvist 2021-05-17 21:54:28 +02:00
parent 4215bd186e
commit 5f578f93b3
2 changed files with 13 additions and 8 deletions

View file

@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools.setup(
name="lxmf",
version="0.0.2",
version="0.0.4",
author="Mark Qvist",
author_email="mark@unsigned.io",
description="Lightweight Extensible Message Format for Reticulum",
@ -18,6 +18,6 @@ setuptools.setup(
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=['rns'],
install_requires=['rns>=0.2.0'],
python_requires='>=3.6',
)