From 1369c3fcb52c7e6500bf52ecfddf113747f05047 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sun, 01 Oct 2023 10:52:07 -0400 Subject: New upstream version 0.2.7 --- (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..574327f --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +from setuptools import setup + +setup( + name='gatt', + packages=['gatt'], + version='0.2.7', + description='Bluetooth GATT SDK for Python', + keywords='gatt', + url='https://github.com/getsenic/gatt-python', + download_url='https://github.com/getsenic/gatt-python/archive/0.2.7.tar.gz', + author='Senic GmbH', + author_email='developers@senic.com', + license='MIT', + py_modules=['gattctl'], + entry_points={ + 'console_scripts': ['gattctl = gattctl:main'] + } +) -- cgit v0.9.1