-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
24 lines (22 loc) · 834 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='hci',
version='0.0.8',
description='Library for creating and parsing HCI packets.',
url='https://github.com/acburigo/python-hci',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
keywords=['HCI', 'protocol', 'ti', 'texas instruments', 'encode', 'decode',
'ble', 'bluetooth low energy'],
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
author='Arthur Crippa Búrigo & Pedro Gyrão',
author_email='arthurcburigo@gmail.com',
)