NomadNet/setup.py

29 lines
847 B
Python
Raw Normal View History

2021-03-27 10:58:13 +01:00
import setuptools
exec(open("nomadnet/_version.py", "r").read())
2021-03-27 10:58:13 +01:00
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="nomadnet",
version=__version__,
2021-03-27 10:58:13 +01:00
author="Mark Qvist",
author_email="mark@unsigned.io",
2021-05-04 20:57:20 +02:00
description="Communicate Freely",
2021-03-27 10:58:13 +01:00
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/markqvist/nomadnet",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points= {
2021-05-18 16:45:56 +02:00
'console_scripts': ['nomadnet=nomadnet.nomadnet:main']
2021-03-27 10:58:13 +01:00
},
2023-01-14 21:15:21 +01:00
install_requires=["rns>=0.4.7", "lxmf>=0.2.9", "urwid>=2.1.2", "qrcode"],
2022-11-19 20:05:31 +01:00
python_requires=">=3.6",
2022-03-28 15:32:49 +02:00
)