meshtastic_mqtt- Unnamed repository; edit this file 'description' to name the repository. |
git clone git://git.acid.vegas/-c.git |
Log | Files | Refs | Archive | README | LICENSE |
setup.py (1539B)
1 from setuptools import setup, find_packages 2 3 setup( 4 name="meshtastic-mqtt-json", 5 version='1.0.10', 6 author='acidvegas', 7 author_email='acid.vegas@acid.vegas', 8 description='A lightweight Python library for parsing Meshtastic MQTT messages', 9 long_description=open('README.md').read(), 10 long_description_content_type='text/markdown', 11 url='https://github.com/acidvegas/meshtastic_mqtt_json', 12 project_urls={ 13 'Bug Tracker' : 'https://github.com/acidvegas/meshtastic_mqtt_json/issues', 14 'Documentation' : 'https://github.com/acidvegas/meshtastic_mqtt_json#readme', 15 'Source Code' : 'https://github.com/acidvegas/meshtastic_mqtt_json', 16 }, 17 packages=find_packages(where='src'), 18 package_dir={'': 'src'}, 19 classifiers=[ 20 'Development Status :: 3 - Alpha', 21 'Intended Audience :: Developers', 22 'License :: OSI Approved :: ISC License (ISCL)', 23 'Operating System :: OS Independent', 24 'Programming Language :: Python :: 3', 25 'Programming Language :: Python :: 3.6', 26 'Programming Language :: Python :: 3.7', 27 'Programming Language :: Python :: 3.8', 28 'Programming Language :: Python :: 3.9', 29 'Topic :: Communications', 30 ], 31 python_requires='>=3.6', 32 install_requires=[ 33 'cryptography', 34 'protobuf', 35 'meshtastic', 36 'paho-mqtt', 37 ], 38 entry_points={ 39 'console_scripts': [ 40 'meshtastic-mqtt-json=meshtastic_mqtt_json.client:main', 41 ], 42 }, 43 )