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