-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 686 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(
name='bgapi',
version='0.0.1',
description='Library for creating and parsing BGAPI packets.',
url='https://github.com/acburigo/python-bgapi',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords=['BGAPI', 'protocol', 'encode', 'decode', 'ble',
'bluetooth low energy'],
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
author='Arthur Crippa Búrigo',
author_email='arthurcburigo@gmail.com',
)