summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 574327f6fa54b0dcbba3c588ab6299c3d626eab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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']
    }
)