made package

This commit is contained in:
randogoth 2023-05-28 22:02:51 +03:00
parent 2f0e6ae895
commit 0331bd7df7
4 changed files with 36 additions and 3 deletions

26
setup.py Normal file
View file

@ -0,0 +1,26 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="loratransmit",
version="0.3.2",
author="randogoth",
author_email="randogoth@posteo.org",
description="LoRa packet transmitter for RNode hardware",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/randogoth/loratransmit",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points= {
'console_scripts': ['loratransmit=loratransmit:main']
},
install_requires=['pyserial'],
python_requires='>=3.6',
)