2020-05-27 19:22:45 +02:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
|
name="rnodeconf",
|
2022-11-01 21:07:06 +01:00
|
|
|
version="1.3.1",
|
2020-05-27 19:22:45 +02:00
|
|
|
author="Mark Qvist",
|
|
|
|
|
author_email="mark@unsigned.io",
|
|
|
|
|
description="Configuration Utility for RNode hardware",
|
|
|
|
|
long_description=long_description,
|
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
|
url="https://github.com/markqvist/rnodeconfigutil",
|
|
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
|
classifiers=[
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
|
],
|
|
|
|
|
entry_points= {
|
|
|
|
|
'console_scripts': ['rnodeconf=rnodeconf:main']
|
|
|
|
|
},
|
2022-11-01 21:01:32 +01:00
|
|
|
install_requires=['pyserial>=3.5', 'cryptography', "rns>=0.3.18"],
|
2022-02-22 10:01:37 +01:00
|
|
|
python_requires='>=3.6',
|
2022-01-12 22:21:32 +01:00
|
|
|
)
|