mirror of
https://github.com/markqvist/NomadNet.git
synced 2024-10-01 01:26:07 -04:00
36 lines
949 B
Python
36 lines
949 B
Python
import setuptools
|
|
|
|
exec(open("nomadnet/_version.py", "r").read())
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
package_data = {
|
|
"": [
|
|
"examples/messageboard/*",
|
|
]
|
|
}
|
|
|
|
setuptools.setup(
|
|
name="nomadnet",
|
|
version=__version__,
|
|
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(),
|
|
package_data=package_data,
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
entry_points= {
|
|
'console_scripts': ['nomadnet=nomadnet.nomadnet:main']
|
|
},
|
|
install_requires=["rns>=0.7.2", "lxmf>=0.4.1", "urwid>=2.4.2,!=2.4.3", "qrcode"],
|
|
python_requires=">=3.6",
|
|
)
|