Updated version and RNS dependency version

This commit is contained in:
Mark Qvist 2025-05-12 11:58:24 +02:00
parent 005d71707c
commit 37e99910ec
2 changed files with 4 additions and 3 deletions

View file

@ -1 +1 @@
__version__ = "0.6.3"
__version__ = "0.7.0"

View file

@ -15,9 +15,10 @@ setuptools.setup(
long_description_content_type="text/markdown",
url="https://github.com/markqvist/lxmf",
packages=["LXMF", "LXMF.Utilities"],
license="Reticulum License",
license_files = ("LICENSE"),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points= {
@ -25,6 +26,6 @@ setuptools.setup(
'lxmd=LXMF.Utilities.lxmd:main',
]
},
install_requires=["rns>=0.9.3"],
install_requires=["rns>=0.9.5"],
python_requires=">=3.7",
)