NomadNet/setup.py

28 lines
836 B
Python
Raw Normal View History

2021-03-27 04:58:13 -05:00
import setuptools
exec(open("nomadnet/_version.py", "r").read())
2021-03-27 04:58:13 -05:00
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="nomadnet",
version=__version__,
2021-03-27 04:58:13 -05:00
author="Mark Qvist",
author_email="mark@unsigned.io",
2021-05-04 13:57:20 -05:00
description="Communicate Freely",
2021-03-27 04:58:13 -05: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 09:45:56 -05:00
'console_scripts': ['nomadnet=nomadnet.nomadnet:main']
2021-03-27 04:58:13 -05:00
},
2021-10-15 12:47:16 -05:00
install_requires=['rns>=0.2.9', 'lxmf>=0.1.2', 'urwid>=2.1.2'],
2021-08-28 13:12:03 -05:00
python_requires='>=3.6',
2021-03-27 04:58:13 -05:00
)