NomadNet/setup.py

28 lines
812 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",
description="Communicate freely",
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= {
'console_scripts': ['nomadnet=nomadnet:main']
},
2021-04-09 15:07:38 -05:00
install_requires=['rns', 'lxmf', 'urwid@2.1.2'],
2021-03-27 04:58:13 -05:00
python_requires='>=3.5',
)