meshtastic-mqtt-json/setup.py

43 lines
1.5 KiB
Python
Raw Normal View History

2024-11-30 03:56:16 +00:00
from setuptools import setup, find_packages
setup(
2024-11-30 04:02:21 +00:00
name="meshtastic-mqtt-json",
2024-12-03 02:25:33 +00:00
version='1.0.4',
2024-11-30 03:56:16 +00:00
author='acidvegas',
author_email='acid.vegas@acid.vegas',
description='A lightweight Python library for parsing Meshtastic MQTT messages',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
2024-11-30 04:02:21 +00:00
url='https://github.com/acidvegas/meshtastic_mqtt_json',
2024-11-30 03:56:16 +00:00
project_urls={
2024-11-30 04:02:21 +00:00
'Bug Tracker' : 'https://github.com/acidvegas/meshtastic_mqtt_json/issues',
'Documentation' : 'https://github.com/acidvegas/meshtastic_mqtt_json#readme',
'Source Code' : 'https://github.com/acidvegas/meshtastic_mqtt_json',
2024-11-30 03:56:16 +00:00
},
packages=find_packages(where='src'),
package_dir={'': 'src'},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Communications',
],
python_requires='>=3.6',
install_requires=[
'cryptography',
'protobuf',
'meshtastic',
'paho-mqtt',
],
entry_points={
'console_scripts': [
2024-11-30 04:02:21 +00:00
'meshtastic-mqtt-json=meshtastic_mqtt_json.client:main',
2024-11-30 03:56:16 +00:00
],
},
)